-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "redux-fetcher",
"version": "2.1.0",
"description": "Simple isomorophic fetch for Redux",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib docs coverage",
"test": "npm run lint && npm run test:coverage",
"test:unit": "mocha --compilers js:babel/register --recursive test/",
"test:unit:watch": "npm run test:unit -- --watch",
"test:coverage": "babel-node ./node_modules/.bin/isparta cover _mocha -- --recursive test/",
"lint": "eslint .",
"check": "ncu",
"docs": "esdoc -c esdoc.json",
"prepublish": "npm run clean && npm test && npm run build && npm run docs"
},
"repository": {
"type": "git",
"url": "https://github.com/vgno/redux-fetcher.git"
},
"author": "Andreas Søvik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vgno/redux-fetcher/issues"
},
"homepage": "https://github.com/vgno/redux-fetcher#readme",
"devDependencies": {
"babel": "~5.8.34",
"babel-eslint": "~4.1.1",
"chai": "~3.4.1",
"esdoc": "~0.4.3",
"esdoc-es7-plugin": "0.0.3",
"esdoc-importpath-plugin": "0.0.1",
"eslint": "~1.9.0",
"eslint-config-vgno": "~5.0.0",
"eslint-plugin-react": "~3.9.0",
"isparta": "~3.5.3",
"mocha": "~2.3.4",
"rimraf": "~2.4.4",
"sinon": "~1.17.2",
"sinon-chai": "~2.8.0",
"npm-check-updates": "~2.5.4",
"redux-api-middleware": "~1.0.2",
"codeclimate-test-reporter": "~0.1.1",
"coveralls": "~2.11.4"
},
"peerDependencies": {
"redux-api-middleware": "~1.0.2"
}
}