forked from node-fetch/node-fetch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "node-fetch-polyfill",
"version": "2.0.6",
"description": "A light-weight module that brings window.fetch to node.js",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js",
"report": "istanbul cover _mocha -- -R spec test/test.js",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && (cat ./coverage/lcov.info | coveralls || exit 0)"
},
"repository": {
"type": "git",
"url": "https://github.com/gwicke/node-fetch-polyfill.git"
},
"keywords": [
"fetch",
"http",
"promise"
],
"author": "David Frank",
"contributors": ["Gabriel Wicke <[email protected]>"],
"license": "MIT",
"bugs": {
"url": "https://github.com/gwicke/node-fetch-polyfill/issues"
},
"homepage": "https://github.com/gwicke/node-fetch-polyfill",
"devDependencies": {
"bluebird": "^3.3.4",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.2",
"form-data": "^1.0.0-rc1",
"istanbul": "^0.4.2",
"mocha": "^2.1.0",
"parted": "^0.1.1",
"promise": "^7.1.1",
"resumer": "0.0.0"
},
"dependencies": {
"encoding": "^0.1.11",
"is-stream": "^1.0.1",
"node-web-streams": "^0.2.1"
}
}