-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "redux-rest",
"version": "0.0.1-alpha.9",
"description": "Create Redux action constants, action creators and reducers for your REST API with no boilerplate.",
"main": "lib/reduxRest.js",
"scripts": {
"build": "scripts/build",
"test": "scripts/test",
"lint": "scripts/lint",
"test-cov": "scripts/test-cov"
},
"repository": {
"type": "git",
"url": "https://github.com/Kvoti/redux-rest"
},
"keywords": [
"React",
"Redux",
"API",
"REST"
],
"author": "Mark Allison",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kvoti/redux-rest/issues"
},
"homepage": "https://github.com/Kvoti/redux-rest",
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.0.0",
"babel-eslint": "^4.0.5",
"babel-loader": "^6.1.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"core-js": "^2.1.3",
"eslint": "^0.24.1",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^3.1.0",
"expect": "^1.8.0",
"isparta": "^3.0.3",
"mocha": "^2.2.5",
"nock": "^2.9.1",
"react": "^0.13.0",
"redux": ">=1.0.0-rc",
"sinon": "^1.15.4",
"webpack": "^1.9.6"
},
"dependencies": {
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"superagent": "^1.2.0"
},
"peerDependencies": {
"redux": ">=1.0.0-rc",
"redux-thunk": ">=1.0.0"
}
}