-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "node-fetch-cjs",
"version": "3.3.2",
"description": "A wrapper for node-fetch (a light-weight module that brings Fetch API to node.js) to be used in commonjs environment.",
"main": "./dist/index.js",
"sideEffects": false,
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "node scripts/build.mjs",
"check": "node scripts/check.mjs",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/touchifyapp/node-fetch-cjs.git"
},
"keywords": [
"fetch",
"http",
"promise",
"request",
"curl",
"wget",
"xhr",
"whatwg",
"cjs",
"commonjs"
],
"author": "Touchify",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-fetch/node-fetch/issues"
},
"homepage": "https://github.com/node-fetch/node-fetch",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/node-fetch"
},
"devDependencies": {
"data-uri-to-buffer": "^4.0.0",
"esbuild": "^0.13.13",
"formdata-polyfill": "^4.0.10",
"fetch-blob": "^3.1.4",
"jest": "^27.3.1",
"node-fetch": "3.3.2"
}
}