forked from benjamine/fetch-wrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
{
"license": "MIT",
"name": "fetch-wrap",
"version": "0.0.10",
"description": "extend WHATWG fetch wrapping it with middlewares",
"repository": {
"type": "git",
"url": "https://github.com/benjamine/fetch-wrap.git"
},
"main": "./src/main",
"scripts": {
"test": "make -s && eslint src test && mocha",
"check": "npm-check && nsp check",
"checku": "npm-check -u && nsp check",
"preversion": "npm test && npm run check",
"postversion": "git push && git push --tags && fiberglass publish",
"watch": "make -s && nodemon --exec \"npm test\"",
"cover": "istanbul cover --root src _mocha",
"cover-report": "open coverage/lcov-report/index.html",
"cover-publish": "istanbul cover _mocha --report lcovonly && codeclimate-test-reporter < coverage/lcov.info"
},
"keywords": [
"fetch",
"wrap",
"middleware",
"whatwg",
"http",
"client",
"isomorphic"
],
"author": "Benjamin Eidelman <[email protected]>",
"devDependencies": {
"benchmark": "^2.1.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.10.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-standard": "^2.0.1",
"fetch-ponyfill": "^3.0.2",
"fiberglass": "0.0.23",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"nodemon": "^1.11.0",
"npm-check": "^5.4.0",
"nsp": "^2.6.2"
}
}