-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
61
{
"name": "http-z",
"version": "8.1.1",
"description": "HTTP message parser and builder",
"main": "dist/index.js",
"browser": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepublish": "pnpm build",
"build": "pnpm rollup -c",
"prettify": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "pnpm lint && pnpm prettify",
"lint": "eslint",
"test": "NODE_ENV=test jest",
"coverage": "NODE_ENV=test jest --coverage",
"coverage:codecov": "pnpm coverage"
},
"keywords": [
"http",
"http-utility",
"http-message",
"builder",
"parser",
"request",
"response"
],
"author": "Alexander Mac",
"license": "MIT",
"homepage": "https://github.com/AlexanderMac/http-z",
"repository": {
"type": "git",
"url": "https://github.com/AlexanderMac/http-z"
},
"bugs": {
"url": "https://github.com/AlexanderMac/http-z/issues"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@rollup/plugin-typescript": "^12.1.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"globals": "^15.15.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rollup": "^4.36.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}