forked from nkbt/component-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.43 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
95
96
97
98
99
{
"name": "component-router",
"version": "3.0.0-alpha.15",
"description": "Redux-based component routing solution",
"main": "lib/index.js",
"config": {
"component": "ComponentRouter",
"externals": {
"react": "React",
"react-dom": "ReactDOM",
"history": "History",
"qs": "Qs",
"redux": "Redux"
}
},
"scripts": {
"start": "./scripts/start.js",
"prepublish": "npm start -s build"
},
"repository": {
"type": "git",
"url": "https://github.com/in-flux/component-router.git"
},
"keywords": [
"component",
"react-component",
"redux-component",
"react",
"component router",
"redux router",
"reducer",
"router",
"partial router",
"url-router",
"url-state"
],
"author": "Nik Butenko <nik@butenko.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/in-flux/component-router/issues"
},
"homepage": "https://github.com/in-flux/component-router",
"peerDependencies": {
"history": "4",
"qs": "6",
"redux": "3"
},
"dependencies": {
"shallow-equal": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.5",
"babel-preset-es2015": "6.24.1",
"babel-preset-node7": "1.5.0",
"babel-preset-react": "6.24.1",
"babel-register": "6.24.1",
"concurrently": "3.4.0",
"css-loader": "0.28.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.0",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-react": "7.0.1",
"extract-text-webpack-plugin": "2.1.0",
"gh-pages": "1.0.0",
"glob": "7.1.1",
"history": "4.6.1",
"html-webpack-include-assets-plugin": "0.0.5",
"html-webpack-plugin": "2.28.0",
"nightwatch-autorun": "3.1.0",
"prop-types": "15.5.10",
"qs": "6.4.0",
"react": "15.5.4",
"react-dom": "15.5.4",
"redux": "3.6.0",
"redux-logger": "3.0.1",
"rimraf": "2.6.1",
"sinon": "2.2.0",
"style-loader": "0.17.0",
"tap-xunit": "1.7.0",
"tape": "4.6.3",
"webpack": "2.5.1",
"webpack-dev-server": "2.4.5"
},
"files": [
"build",
"lib",
"src",
"LICENSE",
"package.json",
"README.md"
]
}