-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "pluto-http-client",
"version": "1.0.9",
"repository": {
"url": "https://github.com/NunuM/pluto-http-client",
"type": "git"
},
"description": "HTTP client for NodeJS. Inspired in the Java JAX-RS spec so you can expect excellence, versatility and extensibility.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=v14.3.0"
},
"scripts": {
"run": "npx tsc",
"build": "npx tsc",
"run-example": "node --require ts-node/register",
"benchmark": "node --require ts-node/register benchmark/server.ts",
"test": "npx jest",
"npm-publish": "rm -rf dist; npx tsc; npm publish"
},
"keywords": [
"http-client",
"http2-client",
"node-http-client",
"pluto-http-client",
"http2"
],
"author": "Nuno Goncalves <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "18.17.0",
"@types/benchmark": "^2.1.2",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"benchmark": "^2.1.4"
}
}