-
-
Notifications
You must be signed in to change notification settings - Fork 756
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "undici",
"version": "3.3.1",
"description": "An HTTP/1.1 client, written from scratch for Node.js",
"main": "index.js",
"types": "index.d.ts",
"module": "wrapper.mjs",
"scripts": {
"lint": "standard | snazzy",
"test": "tap test/*.js --no-coverage && jest test/jest/test",
"test:typescript": "tsd",
"coverage": "standard | snazzy && tap test/*.js",
"coverage:ci": "npm run coverage -- --coverage-report=lcovonly",
"bench": "npx concurrently -k -s first \"node benchmarks/server.js\" \"node -e 'setTimeout(() => {}, 1000)' && node benchmarks\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs/undici.git"
},
"author": "Matteo Collina <hello@matteocollina.com>",
"contributors": [
{
"name": "Robert Nagy",
"url": "https://github.com/ronag",
"author": true
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodejs/undici/issues"
},
"homepage": "https://github.com/nodejs/undici#readme",
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"@types/node": "^14.6.2",
"abort-controller": "^3.0.0",
"benchmark": "^2.1.4",
"concurrently": "^5.2.0",
"https-pem": "^2.0.0",
"jest": "^26.4.0",
"pre-commit": "^1.2.2",
"proxy": "^1.0.2",
"proxyquire": "^2.0.1",
"snazzy": "^8.0.0",
"standard": "^14.3.4",
"tap": "^14.10.8",
"tsd": "^0.13.1"
},
"pre-commit": [
"coverage"
],
"tsd": {
"directory": "test/types",
"compilerOptions": {
"esModuleInterop": true
}
}
}