forked from agraboso/redux-api-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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-api-middleware",
"version": "0.5.0",
"description": "Redux middleware for calling an API.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"cover": "babel-node ./node_modules/.bin/babel-istanbul cover test/index.js | tap-spec",
"lint": "eslint src test",
"prepublish": "npm run lint && npm test && npm run clean && npm run build",
"test": "babel-node test/index.js | tap-spec"
},
"repository": "agraboso/redux-api-middleware",
"homepage": "https://github.com/agraboso/redux-api-middleware",
"keywords": [
"redux",
"api",
"middleware",
"redux-middleware",
"flux"
],
"author": {
"name": "Alberto Garcia-Raboso",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"isomorphic-fetch": "^2.1.1",
"lodash.isplainobject": "^3.2.0",
"normalizr": "^1.0.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-istanbul": "^0.3.17",
"coveralls": "^2.11.4",
"eslint": "^1.1.0",
"nock": "^2.10.0",
"rimraf": "^2.4.2",
"tap-spec": "^4.0.2",
"tape": "^4.2.0"
}
}