-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "saga-reducer-factory",
"version": "1.8.0",
"description": "A utility for creating a pair of saga + a matching reducer, for minimizing boilerplate",
"main": "dist/index.js",
"scripts": {
"test": "mocha --require babel-register test/**/*.test.js",
"test:watch": "mocha --watch --require babel-register test/**/*.test.js",
"test:watchSingle": "mocha --watch --require babel-register",
"compile": "rm -rf dist/ && babel -d dist/ src/"
},
"repository": {
"type": "git",
"url": "https://github.com/InterAl/saga-reducer-factory"
},
"keywords": [
"redux-saga",
"saga",
"redux",
"reducer"
],
"author": "Alon Nachshon",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"redux": "^3.6.0",
"sinon": "^4.3.0"
},
"dependencies": {
"lodash": "^4.17.2",
"redux-actions": "^1.1.0",
"redux-saga": "^0.13.0"
}
}