-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "fetch-redux-crud",
"version": "0.0.9",
"description": "DRY up your Redux API code by leveraging conventions in RESTful APIs. Don't write ugly code, just use fetch-redux-crud",
"main": "./distribution/index.js",
"scripts": {
"build": "babel src --out-dir distribution",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepublish": "yarn run build"
},
"keywords": [
"fetch",
"redux",
"react",
"crud",
"restful",
"api"
],
"homepage": "https://github.com/nano3labs/fetch-redux-crud",
"repository": "github:nano3labs/fetch-redux-crud",
"bugs": {
"url": "https://github.com/nano3labs/fetch-redux-crud/issues",
"email": "[email protected]"
},
"author": "Michael Yagudaev",
"license": "MIT",
"dependencies": {
"humps": "^2.0.1",
"lodash": "^4.17.5",
"node-fetch": "^2.2.0",
"pluralize": "^7.0.0",
"redux": "^3.7.2",
"redux-crud": "^3.2.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@types/fetch-mock": "^6.0.3",
"@types/redux": "^3.6.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"fetch-mock": "^6.5.2",
"jest": "^23.1.0",
"jest-fetch-mock": "^1.6.5",
"jest-junit": "^5.1.0",
"redux-mock-store": "^1.5.3"
}
}