-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.28 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
76
77
78
79
80
81
{
"name": "playwright-magic-steps",
"description": "Auto-transform JavaScript comments into Playwright steps",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git://github.com/vitalets/playwright-magic-steps.git"
},
"type": "commonjs",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"prepare": "git config core.hooksPath scripts/git-hooks",
"lint": "eslint .",
"tsc": "tsc",
"prettier": "prettier --check --ignore-unknown .",
"prettier:w": "prettier --write --ignore-unknown .",
"test": "vitest run test/unit",
"e2e": "npm run build && vitest run test/e2e/e2e.spec.ts --sequence.concurrent --test-timeout=10000",
"test:all": "npm test && npm run e2e",
"toc": "md-magic --files README.md",
"example": "npm run build && cd example && npm test",
"example:report": "cd example && npx playwright show-report",
"pw": "npm i --no-save --min-release-age=0 @playwright/test@$PW",
"pw:install": "PLAYWRIGHT_SKIP_BROWSER_GC=1 npx playwright install chromium",
"pw:cache": "npx playwright clear-cache",
"deps": "npx npm-check-updates -i --format group,dep,repo --cooldown 5",
"build": "bash scripts/build.sh",
"release": "bash scripts/release.sh"
},
"dependencies": {
"pirates": "^4.0.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.57.0",
"@types/node": "20.19.41",
"cross-env": "10.1.0",
"eslint": "^10.3.0",
"eslint-plugin-playwright": "^2.10.2",
"eslint-plugin-visual-complexity": "0.1.4",
"globals": "^17.6.0",
"knip": "^6.12.0",
"lint-staged": "16.4.0",
"markdown-magic": "4.8",
"np": "^11.2.0",
"prettier": "^3.8.3",
"publint": "^0.3.19",
"typescript": "5.9.3",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.5"
},
"keywords": [
"playwright",
"steps",
"testing",
"e2e"
],
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"printWidth": 80,
"semi": true,
"trailingComma": "all",
"bracketSpacing": true
},
"funding": "https://github.com/sponsors/vitalets",
"license": "MIT"
}