-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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-boot-webserver",
"version": "1.0.4",
"description": "Redux Boot Web Server module.",
"main": "dist/index.js",
"scripts": {
"build": "rm -f dist/index.js* && webpack",
"pretest": "rm -f dist/test.js* && webpack --config ./webpack.config.test.js",
"test": "tape dist/test.js | tap-spec",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/choko-org/redux-boot-webserver.git"
},
"keywords": [
"redux-boot",
"module",
"redux",
"webserver"
],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/choko-org/redux-boot-webserver/issues"
},
"homepage": "https://github.com/choko-org/redux-boot-webserver#readme",
"devDependencies": {
"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",
"supertest": "^1.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"webpack": "^1.12.14"
},
"dependencies": {
"redux-boot": "^1.1.0"
}
}