forked from Bounteous-Inc/react-native-screen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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-screen",
"version": "0.0.1",
"description": "A simple React Native component to assist creating a space where there may be tabs or navbar.",
"main": "src/Screen.js",
"scripts": {
"test": "npm run test:ios && npm run test:android",
"test:ios:watch": "jest -c jest.ios.json --watch",
"test:ios": "jest -c jest.ios.json --coverage || true",
"test:android:watch": "jest -c jest.android.json --watch",
"test:android": "jest -c jest.android.json --coverage || true"
},
"jest": {
"preset": "react-native"
},
"babel": {
"presets": [
"es2015",
"react-native"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/%3AHS2-SOLUTIONS/react-native-screen.git"
},
"author": "Miguel Caballero",
"license": "ISC",
"bugs": {
"url": "https://github.com/HS2-SOLUTIONS/react-native-screen/issues"
},
"homepage": "https://github.com/HS2-SOLUTIONS/react-native-screen#readme",
"devDependencies": {
"react": "^15.4.2",
"react-native": "^0.39.1",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "18.1.0",
"jest-react-native": "18.0.0",
"prop-types": "^15.6.0",
"react-test-renderer": "~15.4.2"
}
}