-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
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
{
"name": "mobx-navigation",
"version": "1.0.0",
"description": "Mobx-powered react-native navigation library",
"main": "index.js",
"repository": "git@github.com:PlexChat/mobx-navigation.git",
"author": "Jeremy Ong <jeremy@plexchat.com>",
"license": "Apache",
"dependencies": {
"invariant": "^2.2.2"
},
"peerDependencies": {
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"react": "^16.0.0-alpha.6",
"react-native": "^0.43.4"
},
"scripts": {
"android": "cd example; react-native run-android",
"ios": "cd example; react-native run-ios",
"start": "node node_modules/react-native/local-cli/cli.js start --projectRoots `pwd`,`pwd`/example",
"test": "jest --coverage"
},
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"jest": "^19.0.2",
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"prop-types": "^15.5.8",
"react": "16.0.0-alpha.6",
"react-dom": "^15.5.4",
"react-native": "0.43.4",
"react-test-renderer": "^15.5.4"
},
"jest": {
"automock": false,
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"/example/"
]
}
}