-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
54
55
{
"name": "@podium/http-client",
"version": "0.0.1",
"type": "module",
"description": "The HTTP client used for all HTTP requests in Podium",
"main": "lib/http-client.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"bench": "PORT=3042 concurrently -k -s first npm:bench:server npm:bench:run",
"bench:run": "CONNECTIONS=1 node benchmarks/benchmark.js; CONNECTIONS=50 node benchmarks/benchmark.js",
"bench:server": "node benchmarks/server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebench:run": "node benchmarks/wait.js",
"test": "node --test",
"test:watch": "node --test --watch",
"types": "run-s types:tsc types:test",
"types:tsc": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/podium-lib/http-client.git"
},
"author": "Trygve Lie",
"license": "MIT",
"bugs": {
"url": "https://github.com/podium-lib/http-client/issues"
},
"homepage": "https://github.com/podium-lib/http-client#readme",
"dependencies": {
"@metrics/client": "2.5.4",
"abslog": "2.4.4",
"http-errors": "2.0.0",
"opossum": "8.4.0",
"undici": "6.21.0"
},
"devDependencies": {
"@podium/eslint-config": "1.0.5",
"@podium/semantic-release-config": "2.0.0",
"@podium/typescript-config": "1.0.0",
"@types/node": "20.17.11",
"concurrently": "9.1.2",
"cronometro": "4.0.1",
"eslint": "9.17.0",
"prettier": "3.4.2",
"npm-run-all2": "6.2.6",
"table": "6.8.2",
"typescript": "5.7.2",
"wait-on": "8.0.1"
}
}