Skip to content

Commit 1aab57c

Browse files
committed
chore: fixing package publish config
1 parent d29635b commit 1aab57c

File tree

1 file changed

+57
-54
lines changed

1 file changed

+57
-54
lines changed

package.json

Lines changed: 57 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,59 @@
11
{
2-
"name": "@podium/http-client",
3-
"version": "1.0.0-beta.1",
4-
"type": "module",
5-
"description": "The HTTP client used for all HTTP requests in Podium",
6-
"main": "lib/http-client.js",
7-
"directories": {
8-
"lib": "lib",
9-
"test": "tests"
10-
},
11-
"scripts": {
12-
"bench": "PORT=3042 concurrently -k -s first npm:bench:server npm:bench:run",
13-
"bench:run": "CONNECTIONS=1 node benchmarks/benchmark.js; CONNECTIONS=50 node benchmarks/benchmark.js",
14-
"bench:server": "node benchmarks/server.js",
15-
"lint": "eslint .",
16-
"lint:fix": "eslint . --fix",
17-
"prebench:run": "node benchmarks/wait.js",
18-
"test": "node --test",
19-
"test:watch": "node --test --watch",
20-
"types": "run-s types:tsc types:test",
21-
"types:tsc": "tsc",
22-
"types:test": "tsc --project tsconfig.test.json"
23-
},
24-
"repository": {
25-
"type": "git",
26-
"url": "git+ssh://[email protected]/podium-lib/http-client.git"
27-
},
28-
"author": "Trygve Lie",
29-
"license": "MIT",
30-
"bugs": {
31-
"url": "https://github.com/podium-lib/http-client/issues"
32-
},
33-
"homepage": "https://github.com/podium-lib/http-client#readme",
34-
"dependencies": {
35-
"@metrics/client": "2.5.3",
36-
"abslog": "2.4.4",
37-
"http-errors": "2.0.0",
38-
"opossum": "8.3.0",
39-
"undici": "6.20.1"
40-
},
41-
"devDependencies": {
42-
"@podium/eslint-config": "1.0.2",
43-
"@podium/semantic-release-config": "2.0.0",
44-
"@podium/typescript-config": "1.0.0",
45-
"@types/node": "20.17.3",
46-
"@types/opossum": "8.1.8",
47-
"concurrently": "9.0.1",
48-
"cronometro": "4.0.0",
49-
"eslint": "9.13.0",
50-
"npm-run-all2": "6.2.6",
51-
"prettier": "3.3.3",
52-
"table": "6.8.2",
53-
"typescript": "5.6.3",
54-
"wait-on": "8.0.1"
55-
}
2+
"name": "@podium/http-client",
3+
"version": "1.0.0-beta.1",
4+
"type": "module",
5+
"description": "The HTTP client used for all HTTP requests in Podium",
6+
"main": "lib/http-client.js",
7+
"directories": {
8+
"lib": "lib",
9+
"test": "tests"
10+
},
11+
"scripts": {
12+
"bench": "PORT=3042 concurrently -k -s first npm:bench:server npm:bench:run",
13+
"bench:run": "CONNECTIONS=1 node benchmarks/benchmark.js; CONNECTIONS=50 node benchmarks/benchmark.js",
14+
"bench:server": "node benchmarks/server.js",
15+
"lint": "eslint .",
16+
"lint:fix": "eslint . --fix",
17+
"prebench:run": "node benchmarks/wait.js",
18+
"test": "node --test",
19+
"test:watch": "node --test --watch",
20+
"types": "run-s types:tsc types:test",
21+
"types:tsc": "tsc",
22+
"types:test": "tsc --project tsconfig.test.json"
23+
},
24+
"repository": {
25+
"type": "git",
26+
"url": "git+ssh://[email protected]/podium-lib/http-client.git"
27+
},
28+
"author": "Trygve Lie",
29+
"license": "MIT",
30+
"bugs": {
31+
"url": "https://github.com/podium-lib/http-client/issues"
32+
},
33+
"publishConfig": {
34+
"access": "public"
35+
},
36+
"homepage": "https://github.com/podium-lib/http-client#readme",
37+
"dependencies": {
38+
"@metrics/client": "2.5.3",
39+
"abslog": "2.4.4",
40+
"http-errors": "2.0.0",
41+
"opossum": "8.3.0",
42+
"undici": "6.20.1"
43+
},
44+
"devDependencies": {
45+
"@podium/eslint-config": "1.0.2",
46+
"@podium/semantic-release-config": "2.0.0",
47+
"@podium/typescript-config": "1.0.0",
48+
"@types/node": "20.17.3",
49+
"@types/opossum": "8.1.8",
50+
"concurrently": "9.0.1",
51+
"cronometro": "4.0.0",
52+
"eslint": "9.13.0",
53+
"npm-run-all2": "6.2.6",
54+
"prettier": "3.3.3",
55+
"table": "6.8.2",
56+
"typescript": "5.6.3",
57+
"wait-on": "8.0.1"
58+
}
5659
}

0 commit comments

Comments
 (0)