forked from agraboso/redux-api-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
44
45
46
{
"name": "redux-api-middleware",
"version": "1.0.1",
"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": {
"babel-runtime": "^5.8.25",
"isomorphic-fetch": "^2.1.1",
"lodash.isplainobject": "^3.2.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-istanbul": "^0.3.20",
"coveralls": "^2.11.4",
"eslint": "^1.6.0",
"eslint-plugin-babel": "^2.1.1",
"nock": "^2.15.0",
"normalizr": "^1.1.0",
"rimraf": "^2.4.3",
"tap-spec": "^4.1.0",
"tape": "^4.2.1"
}
}