-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "redux-fetch-elegant",
"version": "1.0.2",
"description": "Simple and elegant isomorophic fetch for Redux middleware",
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib coverage",
"test": "standard --verbose | snazzy && npm run test:coverage",
"test:unit": "mocha --require babel-register test/",
"test:unit:watch": "npm run test:unit -- --watch",
"test:coverage": "babel-node ./node_modules/.bin/isparta cover _mocha -- --recursive test/",
"prepublish": "npm run clean && npm test && npm run build"
},
"keywords": [
"fetch",
"react",
"redux",
"react-middleware"
],
"repository": {
"type": "git",
"url": "git+https://github.com/taberh/redux-fetch.git"
},
"bugs": {
"url": "https://github.com/taberh/redux-fetch/issues"
},
"author": "taber huang <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"snazzy": "^5.0.0",
"standard": "^8.6.0"
},
"dependencies": {
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4"
},
"standard": {
"ignore": [
"node_modules/*",
"lib/*"
]
}
}