-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "reflux-preload",
"version": "2.2.1",
"description": "A way to manage preloading on the server within a reflux based application.",
"main": "reflux-preload.js",
"scripts": {
"lint": "eslint **.js */**.js",
"test": "istanbul cover _mocha",
"example": "node ./example-app/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/robcolburn/reflux-preload"
},
"keywords": [
"reflux",
"preload",
"isomorphic"
],
"author": "Rob Colburn",
"license": "MIT",
"bugs": {
"url": "https://github.com/robcolburn/reflux-preload/issues"
},
"homepage": "https://github.com/robcolburn/reflux-preload",
"dependencies": {
"promise-collector": "^3.0.0"
},
"devDependencies": {
"axios": "^0.5.2",
"chai": "^2.1.2",
"chai-as-promised": "^4.3.0",
"es6-promise": "^2.0.1",
"eslint": "^1.4.3",
"express": "^4.12.3",
"ghooks": "^0.3.2",
"istanbul": "^0.3.13",
"lodash": "^3.6.0",
"mocha": "^2.3.2",
"nock": "^2.11.0",
"phantom": "^0.7.2",
"react": "^0.13.3",
"react-router": "^0.13.3",
"reflux": "^0.2.12",
"webpack": "^1.8.4",
"webpack-dev-middleware": "^1.0.11"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}