forked from BeataKr/axios-har-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "axios-har-tracker",
"version": "0.6.0",
"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.6.2",
"qs": "^6.11.1",
"set-cookie-parser": "^2.6.0"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.0",
"@types/node": "12.12.2",
"@types/set-cookie-parser": "^2.4.7",
"@types/tough-cookie": "2.3.2",
"globby": "^11.0.1",
"istanbul-api": "^3.0.0",
"istanbul-lib-coverage": "^3.2.0",
"jest-junit": "^15.0.0",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5",
"jest": "^29.5.0",
"fs-extra": "^9.0.1"
}
}