-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 981 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
{
"name": "redux-rest-reducer",
"version": "1.2.4",
"description": "Easily interface with REST APIs without boilerplate via Redux",
"main": "distribution/index.js",
"scripts": {
"test": "babel source --presets babel-preset-es2015 --out-dir distribution; mocha",
"build": "babel source --presets babel-preset-es2015 --out-dir distribution"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zencephalon/redux-rest-reducer.git"
},
"author": "Matthew Bunday (http://zencephalon.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/zencephalon/redux-rest-reducer/issues"
},
"homepage": "https://github.com/zencephalon/redux-rest-reducer#readme",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.13.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0"
}
}