-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "redux-generator-action",
"version": "0.1.0",
"description": "an action flow control,redux middleware",
"main": "lib/index.js",
"author": "mrlyj <[email protected]>",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha test",
"test-watch": "./node_modules/.bin/mocha test -w",
"watch": "NODE_ENV=production ./node_modules/.bin/babel src/ --out-dir lib/ -w",
"build": "NODE_ENV=production ./node_modules/.bin/babel src/ --out-dir lib/"
},
"keywords": [
"redux",
"redux-middleware",
"middleware",
"action"
],
"repository": {
"type": "git",
"url": "[email protected]:Mrlyjoutlook/redux-generator-action.git"
},
"bugs": {
"url": "https://github.com/Mrlyjoutlook/redux-generator-action/issues"
},
"dependencies": {
"co": "^4.6.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"mocha": "^3.2.0"
}
}