-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
46
47
48
49
50
51
52
53
{
"name": "axios-http2-adapter",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"release:commit": "./release-commit.sh",
"release:publish": "./release-publish.sh"
},
"keywords": [],
"author": "",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm test",
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@types/express": "~4.17",
"@types/follow-redirects": "~1.14",
"@types/jest": "~29.5",
"@types/node": "~20.10",
"@typescript-eslint/eslint-plugin": "~6.15",
"@typescript-eslint/parser": "~6.15",
"eslint": "~8.56",
"eslint-config-prettier": "~9.1",
"eslint-plugin-prettier": "~5.0",
"express": "~4.19",
"husky": "~8.0",
"jest": "~29.7",
"lint-staged": "~15.2",
"prettier": "~3.1",
"ts-jest": "~29.1",
"typescript": "~5.3"
},
"dependencies": {
"follow-redirects": "~1.15",
"http2-wrapper": "~2.2"
},
"peerDependencies": {
"axios": "~1.7"
}
}