-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 960 Bytes
/
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": "@nxtedition/nxt-undici",
"version": "6.0.7",
"license": "MIT",
"author": "Robert Nagy <[email protected]>",
"main": "lib/index.js",
"type": "module",
"files": [
"lib/*"
],
"dependencies": {
"@nxtedition/undici": "^10.1.2",
"cache-control-parser": "^2.0.6",
"http-errors": "^2.0.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"eslint": "^9.16.0",
"eslint-plugin-n": "^17.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"pinst": "^3.0.0",
"prettier": "^3.4.1",
"send": "^1.1.0",
"tap": "^21.0.1",
"undici-types": "^7.2.3"
},
"scripts": {
"prepare": "husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "tap test"
},
"lint-staged": {
"*.{js,jsx,md,ts}": [
"eslint",
"prettier --write"
]
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
}
}