-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 866 Bytes
/
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
{
"name": "fetch-http2",
"version": "1.5.0",
"description": "Native http2 fetch implementation for Node.js",
"author": "Andrew Barba <[email protected]>",
"license": "MIT",
"main": "dist/fetch.js",
"types": "dist/fetch.d.ts",
"engines": {
"node": ">=16"
},
"repository": {
"url": "https://github.com/AndrewBarba/fetch-http2"
},
"files": ["dist"],
"keywords": [
"fetch",
"http",
"https",
"http2",
"promise",
"request",
"curl",
"wget",
"xhr",
"whatwg"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node16": "^16.1.3",
"@types/chai": "^4.3.20",
"@types/node": "^20.17.6",
"chai": "^5.1.2",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
},
"scripts": {
"build": "tsc",
"lint": "biome ci src test",
"test": "vitest --run --dir test"
}
}