-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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": "redux-commons",
"version": "1.0.7",
"description": "Easily create common reducers by just composing functions",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src",
"index.d.ts"
],
"typings": "./index.d.ts",
"scripts": {
"clean": "rimraf lib",
"build:lib": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build": "npm run build:lib",
"prepublish": "npm run clean && npm run build && npm run test",
"test": "node lib/__test__/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KodersLab/redux-commons.git"
},
"keywords": [
"redux",
"reducer",
"compose"
],
"author": "Mattia Manzati",
"license": "MIT",
"bugs": {
"url": "https://github.com/KodersLab/redux-commons/issues"
},
"homepage": "https://github.com/KodersLab/redux-commons#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"cross-env": "^1.0.7",
"rimraf": "^2.5.2",
"tape": "^4.5.1"
}
}