-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "fluxible-router",
"version": "1.0.0-alpha.4",
"description": "Routing for Fluxible applications",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/yahoo/fluxible.git"
},
"scripts": {
"test": "../../node_modules/.bin/mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec",
"cover": "../../node_modules/.bin/istanbul cover --dir artifacts -- ../../node_modules/.bin/_mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec",
"lint": "../../node_modules/.bin/eslint *.js */*.js"
},
"author": "Lingyan Zhu <lingyan@yahoo-inc.com>",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/fluxible/blob/master/LICENSE.md"
}
],
"dependencies": {
"debug": "^2.0.0",
"fluxible-addons-react": "^0.2.0",
"hoist-non-react-statics": "^1.0.4",
"inherits": "^2.0.1",
"routr": "^2.0.0"
},
"peerDependencies": {
"fluxible": "^1.0.0",
"react": "^0.14.0 || ^15.0.0-rc.1"
},
"devDependencies": {
"fluxible": "^1.0.0",
"lodash": "^3.2.0",
"react": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1"
},
"keywords": [
"flux",
"fluxible",
"history",
"navigation",
"react",
"router"
],
"pre-commit": [
"lint",
"test"
]
}