-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
101 lines (101 loc) · 2.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@tapico/msw-webarchive",
"version": "1.1.0",
"description": "An utility to drive requests handlers through a `.har` web-archive file",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"types": "dist/types",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/umd/index.js",
"import": "./dist/esm/index.js"
},
"./node": {
"types": "./dist/types/node/index.d.ts",
"default": "./node/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"node",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"start": "cross-env NODE_ENV=development rollup -c rollup.config.ts -w",
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier .",
"build": "pnpm run clean && cross-env NODE_ENV=production rollup -c rollup.config.mjs",
"test": "pnpm run test:unit",
"test:unit": "cross-env BABEL_ENV=test jest --runInBand",
"prepublishOnly": "pnpm run test:unit && pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tapico/tapico-msw-webarchive.git"
},
"keywords": [
"msw",
"mock",
".har",
"devtools"
],
"author": {
"name": "Weyert de Boer"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"bugs": {
"url": "https://github.com/Tapico/tapico-msw-webarchive/issues"
},
"homepage": "https://github.com/Tapico/tapico-msw-webarchive#readme",
"sideEffects": false,
"peerDependencies": {
"msw": ">=2.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@types/jest": "^29.5.12",
"@types/node-fetch": "^2.6.11",
"@types/set-cookie-parser": "^2.4.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"msw": "^2.2.13",
"node-fetch": "^2.7.0",
"prettier": "^3.2.5",
"release-please": "^16.10.1",
"rimraf": "^5.0.5",
"rollup": "^4.14.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"undici": "^6.13.0",
"web-streams-polyfill": "^4.0.0"
}
}