-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 944 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
{
"name": "redux-quick-action",
"version": "1.0.5",
"description": "Redux action/reducer wrapper that hides synchronous reducers implementation",
"main": "index.js",
"scripts": {
"test": "mocha ./test",
"build": "babel src --out-dir release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cashsun/redux-quick-action.git"
},
"keywords": [
"redux",
"react",
"react-redux",
"reducer"
],
"author": "Cash Sun",
"license": "ISC",
"bugs": {
"url": "https://github.com/cashsun/redux-quick-action/issues"
},
"homepage": "https://github.com/cashsun/redux-quick-action#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"redux": "^3.6.0"
},
"dependencies": {
"deep-freeze": "0.0.1",
"lodash": "^4.16.4",
"shortid": "^2.2.6"
}
}