forked from YahooArchive/flux-router-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "flux-router-component",
"version": "0.6.3",
"description": "Router-related React component and mixin for applications with Fluxible architecture",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/yahoo/flux-router-component.git"
},
"scripts": {
"cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --reporter spec",
"lint": "jshint lib tests",
"test": "mocha tests/unit/ --recursive --reporter spec"
},
"author": "Lingyan Zhu <lingyan@yahoo-inc.com>",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/flux-router-component/blob/master/LICENSE.md"
}
],
"dependencies": {
"debug": "^2.0.0",
"object-assign": "^2.0.0",
"query-string": "^1.0.0",
"setimmediate": "^1.0.2"
},
"peerDependencies": {
"react": "0.13.x"
},
"devDependencies": {
"chai": "^2.0.0",
"coveralls": "^2.11.1",
"istanbul": "^0.3.2",
"jsdom": "^3.0.2",
"jshint": "^2.5.1",
"lodash": "^3.2.0",
"mocha": "^2.0.1",
"precommit-hook": "^1.0.2",
"react": "0.13.x",
"react-tools": "0.13.x"
},
"jshintConfig": {
"node": true
},
"keywords": [
"flux",
"history",
"navigation",
"react",
"router"
]
}