-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "@openally/httpie",
"version": "1.1.2",
"description": "Node.js HTTP client that use Undici client",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src test",
"prepublishOnly": "npm run build && npm run test-types",
"test-only": "tsx --test ./**/*.test.ts",
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAlly/httpie.git"
},
"engines": {
"node": ">=22"
},
"keywords": [],
"files": [
"dist"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenAlly/httpie/issues"
},
"homepage": "https://github.com/OpenAlly/httpie#readme",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@openally/config.eslint": "^2.2.0",
"@openally/config.typescript": "1.2.1",
"@types/lru-cache": "^7.10.9",
"@types/node": "24.9.1",
"c8": "11.0.0",
"fastify": "5.8.2",
"is-html": "3.2.0",
"p-ratelimit": "^1.0.1",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"dependencies": {
"@openally/result": "2.0.0",
"lru-cache": "11.2.6",
"undici": "7.24.4"
}
}