forked from aksonov/react-native-router-flux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "react-native-router-flux",
"version": "3.37.0",
"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": {
"react-addons-pure-render-mixin": "15.0.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": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1",
"expect": "^1.20.2",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.12.1",
"react": "15.0.2",
"react-addons-create-fragment": "15.0.2",
"react-addons-linked-state-mixin": "15.0.2",
"react-addons-perf": "15.0.2",
"react-addons-test-utils": "15.0.2",
"react-addons-update": "15.0.2",
"react-dom": "15.0.2",
"react-native": "0.26.x",
"react-native-mock": "0.2.0",
"sinon": "^1.17.6"
}
}