forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
{
"name": "react-native-navigation",
"version": "2.0.0-experimental.138",
"description": "React Native Navigation - truly native navigation for iOS and Android",
"license": "MIT",
"nativePackage": true,
"author": "Tal Kol <talkol@gmail.com>",
"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": ":",
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "cd android && ./gradlew clean testDebugUnitTest",
"release": "npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
},
"peerDependencies": {
"react-native": "*",
"react": "*"
},
"dependencies": {
"lodash": "^4.13.0"
},
"optionalDependencies": {
"react-redux": "*"
},
"devDependencies": {
"react-native": "0.31.0",
"react": "15.2.1",
"app-root-path": "^1.0.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-react-native": "^1.0.0",
"babel-register": "^6.8.0",
"eslint": "^2.5.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^4.2.3",
"eslint-plugin-react-native": "^1.0.0",
"babel-eslint": "^6.0.4",
"jasmine": "^2.4.1",
"jasmine-reporters": "^2.1.1",
"jasmine-spec-reporter": "^2.4.0",
"jasmine-expect": "^2.0.2",
"proxyquire": "1.7.4"
}
}