-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "redux-remote-resource",
"version": "0.5.1",
"description": "Flexible Redux middleware for making remote API calls",
"author": "Tyler Fowler <[email protected]>",
"main": "dist/redux-remote-resource.js",
"scripts": {
"test": "gulp test",
"prepublishOnly": "gulp",
"build": "gulp build",
"preversion": "gulp test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylerfowler/redux-remote-resource.git"
},
"keywords": [
"Redux",
"middleware",
"API",
"remote",
"resource",
"REST",
"redux-middleware",
"redux-api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tylerfowler/redux-remote-resource/issues"
},
"homepage": "https://github.com/tylerfowler/redux-remote-resource#readme",
"dependencies": {
"core-js": "^2.5.7",
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"eslint": "^4.19.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^4.0.2",
"gulp-rename": "^1.2.3",
"gulp-tape": "^1.0.0",
"gulp-uglify": "^3.0.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"tap-colorize": "^1.2.0",
"tape": "^4.9.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"resolutions": {
"natives": "1.1.3"
}
}