-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.92 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
63
64
65
66
67
68
69
{
"name": "redux-api-middleware-addon",
"version": "1.0.0",
"title": "redux-api-middleware-addon",
"main": "lib/index.js",
"description": "A opinioned boilerplate for develop react component(with styled-components) and redux action,reducer with proper development tools",
"keywords": [
"Babel",
"redux",
"redux api middleware addon",
"Library"
],
"homepage": "https://github.com/chungchi300/redux-api-middleware-addon",
"author": {
"name": "Jeff Chung",
"url": "https://github.com/chungchi300"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chungchi300/redux-api-middleware-addon"
},
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.25.0",
"form-data": "^2.3.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"query-string": "^5.0.1",
"redux-api-middleware": "^2.0.1",
"urijs": "^1.18.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-istanbul": "^0.12.2",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.0",
"eslint": "^4.3.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-prettier": "^2.1.2",
"isomorphic-fetch": "^2.1.1",
"nock": "^9.1.0",
"prettier": "^1.5.3",
"rimraf": "^2.6.2",
"tap-spec": "^4.1.1 ",
"tape": "^4.8.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"cover": "babel-node ./node_modules/.bin/babel-istanbul cover test/index.js | tap-spec",
"lint": "eslint src test",
"prepublish": "npm run lint && npm test && npm run clean && npm run build",
"test": ""
},
"jest": {
"modulePaths": [
"./node_modules",
"./src/common"
]
}
}