forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.06 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-native-navigation",
"version": "1.1.406",
"description": "React Native Navigation - truly native navigation for iOS and Android",
"license": "MIT",
"nativePackage": true,
"author": "Tal Kol <[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/wix/react-native-navigation/issues"
},
"homepage": "https://github.com/wix/react-native-navigation",
"readme": "https://github.com/wix/react-native-navigation#readme",
"repository": {
"type": "git",
"url": "https://github.com/wix/react-native-navigation.git"
},
"main": "src/index.js",
"scripts": {
"build": ":",
"clean": ":",
"test-js": "npm run test",
"test-unit-ios": ":",
"test-unit-android": ":",
"test-e2e-ios": ":",
"test-e2e-android": ":",
"lint": "eslint src test",
"test:js": "jest --coverage",
"test:android": "cd android && ./gradlew clean testDebugUnitTest",
"test:ios": ":",
"pretest": "npm run lint",
"test": "npm run test:js && npm run test:android && npm run test:ios",
"test:watch": "jest --coverage --watch",
"release": "node ./scripts/release.js"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"lodash": "4.x.x"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "7.x.x",
"babel-jest": "18.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-react-native": "1.x.x",
"babel-register": "6.x.x",
"eslint": "3.x.x",
"eslint-plugin-babel": "3.x.x",
"eslint-plugin-react": "6.x.x",
"eslint-plugin-react-native": "2.x.x",
"jest": "18.x.x",
"jest-cli": "18.x.x",
"jest-react-native": "18.x.x",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.6",
"react-native": "0.43.0",
"react-test-renderer": "15.4.2",
"semver": "5.x.x"
},
"jest": {
"preset": "jest-react-native",
"testPathDirs": [
"node_modules",
"src2"
],
"resetMocks": true,
"resetModules": true
}
}