-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.16 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.16 KB
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
{
"name": "playwright-network-cache",
"description": "Cache network requests in Playwright tests",
"version": "0.2.2",
"type": "commonjs",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"prepare": "git config core.hooksPath scripts/git-hooks",
"lint": "eslint .",
"tsc": "tsc",
"knip": "knip -c knip.config.ts",
"prettier": "prettier --check --ignore-unknown .",
"prettier:w": "prettier --write --ignore-unknown .",
"test": "npx playwright test",
"test:d": "DEBUG=playwright-network-cache npm test",
"pw": "npm i --no-save @playwright/test@$PW",
"pw:install": "npx cross-env PLAYWRIGHT_SKIP_BROWSER_GC=1 npx playwright install chromium",
"example": "npx playwright test -c example",
"example:debug": "DEBUG=playwright-network-cache npx playwright test -c example",
"example:nocache": "rm -rf .network-cache && npx playwright test -c example",
"example:serve": "npx ts-node ./example/src/server",
"toc": "md-magic --files README.md",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"release": "release-it"
},
"dependencies": {
"debug": "^4.4.3",
"mime-types": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@playwright/test": "^1.55.1",
"@release-it/keep-a-changelog": "^7.0.0",
"@types/debug": "4.1.12",
"@types/mime-types": "^3.0.1",
"@types/node": "^18.15.0",
"eslint": "^9.37.0",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-visual-complexity": "0.1.4",
"globals": "^16.4.0",
"knip": "^5.64.2",
"lint-staged": "^16.2.3",
"markdown-magic": "^3.7.0",
"prettier": "^3.6.2",
"publint": "^0.3.14",
"release-it": "^19.0.5",
"ts-node": "^10.9.2",
"typescript": "5.4.5",
"typescript-eslint": "^8.45.0"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/playwright-network-cache.git"
},
"keywords": [
"playwright",
"network",
"cache",
"testing",
"e2e"
],
"funding": "https://github.com/sponsors/vitalets",
"license": "MIT"
}