-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.36 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
54
{
"name": "axios-har-tracker",
"version": "0.7.2",
"description": "",
"main": "dist/axios-har-tracker.js",
"scripts": {
"prebuild": "rimraf ./dist ./coverage ./testresults ./harfiles",
"build": "tsc",
"test": "jest",
"pretest": "rimraf ./harfiles",
"posttest": "node ./scripts/jest-join-coverage.js",
"prepublish": "npm run build"
},
"author": "Beata Kruzycka <[email protected]>",
"keywords": [
"axios",
"HTTP Archive format",
"archive file"
],
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": "https://github.com/BeataKr/axios-har-tracker/issues"
},
"homepage": "https://github.com/BeataKr/axios-har-tracker",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"qs": "^6.11.1",
"set-cookie-parser": "^2.6.0"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/set-cookie-parser": "^2.4.10",
"@types/tough-cookie": "4.0.5",
"express": "^4.21.0",
"fs-extra": "11.2.0",
"globby": "14.0.2",
"istanbul-api": "^3.0.0",
"istanbul-lib-coverage": "^3.2.0",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"path": "^0.12.7",
"rimraf": "6.0.1",
"ts-jest": "^29.1.0",
"typescript": "5.6.2"
}
}