-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
{
"name": "redux-prefetch",
"version": "0.1.11",
"description": "prefetch async state on the server for universal react apps built with redux",
"main": "./lib/index.js",
"scripts": {
"compile": "./node_modules/.bin/babel -d ./lib ./src",
"prepublish": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeomatic/redux-prefetch.git"
},
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/redux-prefetch/issues"
},
"homepage": "https://github.com/makeomatic/redux-prefetch#readme",
"dependencies": {
"bluebird": "^3.1.1",
"hoist-non-react-statics": "^1.0.3",
"invariant": "^2.2.0",
"lodash.forown": "^3.0.2"
},
"peerDependencies": {
"react": "^0.14.3",
"react-redux": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^5.0.0-beta4",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-strict-mode": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.0",
"eslint-plugin-react": "^3.11.3"
}
}