-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
44
45
46
47
48
49
50
51
52
53
{
"name": "redux-standard-reducer",
"version": "0.1.0",
"description": "A redux reducer for standard action that merge data to state",
"main": "lib/index.js",
"dependencies": {
"immutability-helper": "^2.3.1",
"lodash.mergewith": "^4.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"codecov": "^2.2.0",
"eslint": "^4.5.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^2.5.3",
"reduce-reducers": "^0.1.2",
"redux": "^3.7.2",
"should": "^11.2.1"
},
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm run build",
"test": "mocha",
"test-cover": "istanbul cover _mocha -- -u exports",
"report-cover": "codecov"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/magicdawn/redux-standard-reducer.git"
},
"keywords": [
"redux",
"reducer",
"standard"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/redux-standard-reducer/issues"
},
"homepage": "https://github.com/magicdawn/redux-standard-reducer#readme",
"files": [
"lib",
"src",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}