-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "react-native-touchable-safe",
"version": "1.1.5",
"author": "James Isaac <[email protected]>",
"description": "Consistent view hierarchy and API for React Native `Touchable*` components.",
"keywords": [
"react-native",
"touchable",
"android",
"ios"
],
"bugs": {
"url": "https://github.com/jamesisaac/react-native-touchable-safe/issues"
},
"license": "MIT",
"main": "./js/Touchable",
"repository": {
"type": "git",
"url": "https://github.com/jamesisaac/react-native-touchable-safe.git"
},
"scripts": {
"jest": "jest",
"prettier": "prettier --write \"js/**/*.js\"",
"test": "npm run jest && npm run flow"
},
"jest": {
"preset": "react-native"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^2.1.0",
"flow-bin": "^0.113.0",
"jest": "^20.0.4",
"prettier": "~1.12.0",
"react": "^16.13.1",
"react-native": "^0.62.2",
"react-test-renderer": "16.3.1"
},
"peerDependencies": {
"react-native": "*"
}
}