forked from redux-effects/redux-effects-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1016 Bytes
/
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
{
"name": "redux-effects-fetch",
"version": "0.5.5",
"description": "Declarative data-fetching for redux",
"main": "lib/index.js",
"scripts": {
"test": "babel-tape-runner test/*.js | tap-spec",
"prepublish": "rm -rf lib && babel src --out-dir lib",
"postpublish": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "https://github.com/redux-effects/redux-effects-fetch"
},
"keywords": [
"redux",
"fetch"
],
"author": "ashaffer (http://github.com/ashaffer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/redux-effects/redux-effects-fetch/issues"
},
"homepage": "https://github.com/redux-effects/redux-effects-fetch",
"dependencies": {
"es6-promise": "^3.0.2",
"isomorphic-fetch": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.5.0",
"babel-tape-runner": "^2.0.0",
"lodash": "^4.8.1",
"tap-spec": "^4.1.1",
"tape": "^4.2.0"
}
}