-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "combine-section-reducers",
"version": "1.0.5",
"description": "Combines section reducers",
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"test": "mocha --compilers js:babel-register --recursive ./test/*.spec.js",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryo33/combine-section-reducers.git"
},
"keywords": [
"combine",
"redux",
"reducer"
],
"author": "Ryo33",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.1",
"redux": "^3.5.2"
},
"bugs": {
"url": "https://github.com/ryo33/combine-section-reducers/issues"
},
"homepage": "https://github.com/ryo33/combine-section-reducers#readme",
"dependencies": {
"is-valid-redux-reducer": "^1.0.3"
}
}