-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
94 lines (94 loc) · 2.33 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-router-native",
"version": "2.0.0-beta.0",
"description": "A routing library for React Native that strives for sensible API parity with react-router",
"main": "modules/index",
"jsnext:main": "modules/index",
"files": [
"*.md",
"docs",
"modules"
],
"author": "Jake Murzy <jake@murzy>",
"license": "MIT",
"homepage": "https://github.com/jmurzy/react-router-native",
"tags": [
"react",
"router",
"native",
"navigation"
],
"keywords": [
"react",
"react-router",
"react-native",
"react-router-native",
"react-native-router",
"native",
"routing",
"router",
"navigator",
"navigationexperimental",
"navigation",
"navigatorios",
"ios",
"andorid",
"react-component"
],
"contributors": [
{
"name": "Jake Murzy",
"email": "jake@murzy"
}
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "npm run spec && npm run lint && npm run flow",
"spec": "./node_modules/.bin/babel-node ./node_modules/.bin/gulp spec",
"lint": "./node_modules/.bin/babel-node ./node_modules/.bin/gulp lint",
"flow": "./node_modules/.bin/flow check",
"watch": "./node_modules/.bin/babel-node ./node_modules/.bin/gulp watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jmurzy/react-router-native.git"
},
"bugs": {
"url": "https://github.com/jmurzy/react-router-native/issues"
},
"peerDependencies": {
"react-native": "0.36.0-rc.1"
},
"dependencies": {
"history": "3.2.1",
"invariant": "^2.2.1",
"react-router": "3.0.0-alpha.3",
"warning": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-polyfill": "^6.9.1",
"babel-preset-react-native": "^1.9.0",
"chai": "^3.5.0",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-flowtype": "^2.3.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"flow-bin": "^0.33.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.1",
"react": "~15.3.1",
"react-native": "0.36.0-rc.1",
"react-native-mock": "^0.2.5",
"react-router": "3.0.0-alpha.3",
"rimraf": "^2.5.2",
"run-sequence": "^1.2.2"
}
}