forked from aksonov/react-native-router-flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.92 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-router-flux",
"version": "3.38.1",
"description": "React Native Router using Flux architecture",
"repository": {
"type": "git",
"url": "https://github.com/aksonov/react-native-router-flux"
},
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require react-native-mock/mock",
"test:watch": "npm run test -- --watch",
"eslint": "eslint index.js src/ test/; exit 0;"
},
"keywords": [
"react-native",
"react-native-router",
"react-components",
"react-component",
"ios",
"android",
"flux",
"router",
"navigation"
],
"author": {
"name": "Pavlo Aksonov",
"email": "akso.nov@gmail.com",
"url": "http://aksonov.com"
},
"license": "MIT",
"maintainers": [
{
"name": "aksonov",
"email": "pavlo.aksonov@gmail.com"
}
],
"dependencies": {
"lodash.isequal": "^4.5.0",
"react": "^15.4.2",
"react-addons-pure-render-mixin": "^15.4.2",
"react-dom": "^15.4.2",
"react-native": "^0.41.2",
"react-native-experimental-navigation": "0.26.x",
"react-native-tabs": "^1.0.9",
"react-static-container": "1.0.1"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-preset-react-native": "^1.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"enzyme": "^2.6.0",
"eslint": "^3.11.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.12.1",
"react-native-mock": "0.2.0",
"sinon": "^1.17.6",
"babel-jest": "19.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"jest": "19.0.1",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native"
}
}