-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 946 Bytes
/
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-saga-sugar",
"version": "0.3.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"dev": "babel src --out-dir lib -w",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "mocha --check-leaks --compilers js:babel-core/register"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"mocha": "^2.5.3"
},
"files": [
"src",
"lib",
"*.md"
],
"author": "jasonHzq",
"license": "ISC",
"bugs": {
"url": "https://github.com/jasonHzq/redux-saga-sugar/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonHzq/redux-saga-sugar.git"
},
"dependencies": {
"babel-polyfill": "^6.13.0",
"lodash": "^4.16.2",
"redux-saga": "^0.11.1",
"setRafTimeout": "^0.2.0"
}
}