forked from nodejs/undici
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "undici",
"version": "1.3.1",
"description": "An HTTP/1.1 client, written from scratch for Node.js",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"test": "tap test/*.js --no-coverage && jest test/jest/test",
"coverage": "standard | snazzy && tap test/*.js",
"bench": "npx concurrently -k -s first \"node benchmarks/server.js\" \"node -e 'setTimeout(() => {}, 1000)' && node benchmarks\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/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/mcollina/undici/issues"
},
"homepage": "https://github.com/mcollina/undici#readme",
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"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",
"proxyquire": "^2.0.1",
"snazzy": "^8.0.0",
"standard": "^14.3.4",
"tap": "^14.10.8"
},
"pre-commit": [
"coverage"
]
}