forked from jccr/node-fetch-web-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
{
"name": "node-fetch-web-streams",
"version": "1.0.1",
"description": "Brings the Fetch API with the Streams API to Node.js",
"main": "./dist/index.cjs",
"module": "./src/index.js",
"type": "module",
"exports": {
"import": "./src/index.js",
"require": "./dist/index.cjs"
},
"files": [
"src",
"dist",
"rollup.config.mjs"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c",
"test": "node --experimental-modules node_modules/.bin/c8 --reporter=html --reporter=text --check-coverage node --experimental-modules node_modules/.bin/mocha",
"prepublishOnly": "npm run build",
"install": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/jccr/node-fetch-web-streams.git"
},
"keywords": [
"fetch",
"http",
"promise",
"whatwg",
"streams"
],
"author": "David Frank",
"license": "MIT",
"bugs": {
"url": "https://github.com/jccr/node-fetch-web-streams/issues"
},
"homepage": "https://github.com/jccr/node-fetch-web-streams",
"devDependencies": {
"c8": "^7.6.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"chai-iterator": "^3.0.2",
"chai-string": "^1.5.0",
"form-data": "^4.0.0",
"mocha": "^8.3.0",
"parted": "^0.1.1",
"promise": "^8.0.1",
"resumer": "0.0.0",
"string-to-arraybuffer": "^1.0.0",
"whatwg-url": "^8.4.0"
},
"dependencies": {
"busboy": "^0.3.1",
"formdata-node": "2.4.0",
"rollup": "^2.39.0",
"web-streams-polyfill": "3.0.2"
},
"peerDependencies": {
"form-data": ">=3.0.0"
}
}