-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "redux-operations",
"version": "0.5.2",
"description": "Prioritized waterfall reducers for predictable, dynamic, multi reducers with a visual API",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"lint": "xo src/index.js --esnext --space --fix",
"build": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run clean && npm run build",
"test": "ava __tests__/**/*.js",
"watch": "babel -w --presets es2015,stage-0 -d lib/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattkrick/redux-operations.git"
},
"keywords": [
"redux",
"side effects",
"thunk",
"operations"
],
"author": "Dror Tirosh",
"contributors": [
"Matt Krick <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mattkrick/redux-operations/issues"
},
"homepage": "https://github.com/mattkrick/redux-operations#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.6.5",
"rimraf": "^2.5.2"
},
"peerDependencies": {
"redux": "^3.3.1"
}
}