-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "@sellerlabs/redux-auto-api",
"version": "0.0.7",
"license": "MIT",
"main": "dist/bundle.js",
"moduleRoots": [
"src"
],
"peerDependencies": {
"babel-polyfill": "6.x",
"ramda": "0.25.0",
"redux-thunk": ">= 2.2 < 3",
"reselect": "3.x"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"ramda": "^0.25.0",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7"
},
"description": "Automatically generate your Redux API interactions",
"scripts": {
"build": "npx rollup -c ./rollup.config.js",
"watch": "npx rollup -c ./rollup.config.js --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"install": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sellerlabs/redux-auto-api.git"
},
"keywords": [
"redux",
"api",
"get",
"post",
"patch",
"delete"
],
"author": "Darnell Arford",
"bugs": {
"url": "https://github.com/sellerlabs/redux-auto-api/issues"
},
"homepage": "https://github.com/sellerlabs/redux-auto-api#readme"
}