-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 911 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
{
"name": "combine-reducers-enhanced",
"version": "0.0.5",
"description": "Extension on the combineReducers method as available in Redux libraries",
"license": "MIT",
"repository": "kwintenp/combine-reducers-enhanced",
"author": {
"name": "KwintenP",
"email": "[email protected]",
"url": "blog.kwintenp.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"prebuild": "npm run clean && npm run copy",
"clean": "rimraf release",
"copy": "cpy LICENSE package.json README.md release",
"build": "tsc -p tsconfig.json",
"deploy": "npm run build && cd ./release && npm publish"
},
"main": "index.js",
"types": "index.d.ts",
"keywords": [
""
],
"peerDependencies": {
},
"dependencies": {
},
"devDependencies": {
"ava": "^0.17.0",
"cpy-cli": "1.0.1",
"nyc": "^10.0.0",
"typescript": "2.4.0",
"xo": "^0.17.0"
}
}