-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "fetch-headers",
"version": "3.0.1",
"description": "fetch Headers",
"main": "headers.js",
"type": "module",
"scripts": {
"test": "node --no-warnings --experimental-loader ./test/http-loader.js ./test/wpt_test.js",
"test:deno": "deno test test --allow-net --allow-read --coverage=x && deno coverage x && rm -rf x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmywarting/fetch-headers.git"
},
"exports": {
".": "./headers.js"
},
"types": "./headers.d.ts",
"keywords": [
"Headers",
"fetch",
"spec",
"whatwg"
],
"author": "Jimmy Wärting <[email protected]> (https://jimmy.warting.se/opensource)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimmywarting/fetch-headers/issues"
},
"engines": {
"node": ">=12.20"
},
"homepage": "https://github.com/jimmywarting/fetch-headers#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jimmywarting"
},
{
"type": "github",
"url": "https://paypal.me/jimmywarting"
}
],
"devDependencies": {
"node-fetch": "^3.1.0"
}
}