-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "redux-boot",
"version": "1.1.3",
"description": "Minimal Framework using Redux to develop modularized universal Apps.",
"main": "lib/index.js",
"scripts": {
"build": "npm run build-es && npm run build-umd",
"build-es": "rm -Rf lib && BABEL_ENV=es babel ./src -d lib",
"build-umd": "rm -f build/index.js* && webpack",
"pretest": "rm -f build/test.js* && webpack --config ./webpack.config.test.js",
"test": "tape build/test.js | tap-spec",
"prepublish": "npm run build"
},
"directories": {
"lib": "src/lib"
},
"author": "",
"license": "MIT",
"repository": "choko-org/redux-boot",
"peerDependencies": {
"babel-runtime": "^6.6.1",
"redux": "^3.3.1",
"redux-actions": "^2.2.1",
"redux-promise": "^0.5.3"
},
"devDependencies": {
"axios": "^0.11.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"flux-standard-action": "^0.6.1",
"gitbook-cli": "2.1.3",
"json-loader": "^0.5.4",
"redux": "^3.3.1",
"redux-actions": "^2.2.1",
"redux-promise": "^0.5.3",
"symbol-observable": "^0.2.2",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"webpack": "^1.12.14"
}
}