-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
54
55
56
57
58
{
"name": "redux-combiner",
"version": "0.4.4",
"description": "Convenient reducers combiner for Redux",
"main": "dest/combiner.js",
"scripts": {
"ci": "npm run lint && npm run cover && npm run karma",
"test": "npm run lint && npm run mocha && npm run karma",
"lint": "eslint src",
"mocha": "mocha --recursive --require babel-register test",
"karma": "karma start karma.conf.js",
"cover": "cross-env NODE_ENV=test nyc npm run mocha",
"compile": "babel --out-dir dest src",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmdm/redux-combiner.git"
},
"keywords": [
"redux",
"redux-combiner",
"reducers",
"combineReducers",
"combine"
],
"author": "rmdm",
"license": "MIT",
"devDependencies": {
"@babel/polyfill": "^7.0.0-beta.46",
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"coveralls": "^3.0.1",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"karma": "^2.0.2",
"karma-browserify": "^5.2.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"redux": "^3.7.2",
"redux-loop": "^4.2.4"
},
"dependencies": {
"babel-runtime": "^6.26.0"
},
"files": [
"dest/combiner.js"
]
}