-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "redux-combine-actions",
"version": "0.1.2",
"description": "Redux middleware for combining actions",
"main": "lib/index.js",
"scripts": {
"test": "eslint ./src/*.js",
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/itsmepetrov/redux-combine-actions.git"
},
"keywords": [
"redux",
"promise",
"middleware",
"combine",
"actions",
"sequence",
"sequential",
"flux"
],
"author": "Anton Petrov <[email protected]> (http://github.com/itsmepetrov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/itsmepetrov/redux-combine-actions/issues"
},
"homepage": "https://github.com/itsmepetrov/redux-combine-actions",
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.5",
"eslint": "^1.1.0",
"eslint-config-airbnb": "0.0.7",
"eslint-plugin-react": "^3.2.2",
"rimraf": "^2.4.2"
}
}