-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "react-native-ducks-router",
"version": "0.1.36",
"description": "React native redux router",
"main": "index.js",
"repository": {
"url": "https://github.com/newageio/react-native-ducks-router",
"type": "git"
},
"author": "intpp",
"license": "MIT",
"scripts": {
"lint": "node_modules/.bin/eslint src",
"test": "mocha --compilers js:babel-core/register --require react-native-mock/mock",
"prepublish": "npm run lint && npm t"
},
"peerDependencies": {
"react": ">=15.3.2",
"react-native": ">=0.36.1",
"react-redux": ">=4.4.5"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-preset-react-native": "^1.9.1",
"chai": "^3.5.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-react-native": "^2.2.1",
"mocha": "^3.2.0",
"react": ">=15.3.2",
"react-native": ">=0.36.1",
"react-native-mock": "^0.2.9",
"react-redux": ">=4.4.5"
},
"dependencies": {
"shallowequal": "^0.2.2"
},
"files": [
"README.md",
"src/",
"index.js"
]
}