-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "playwright-magic-steps",
"description": "Auto-transform JavaScript comments into Playwright steps",
"version": "0.4.0",
"type": "commonjs",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./esm": "./dist/pwHooks/esm/registerLoader.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": "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",
"example": "npm run build && cross-env NODE_OPTIONS=\"-r playwright-magic-steps\" playwright test -c example",
"toc": "md-magic --files README.md",
"pw": "npm i --no-save @playwright/test@$PW",
"build": "bash scripts/build.sh",
"release": "bash scripts/release.sh"
},
"peerDependencies": {
"@playwright/test": ">=1.41"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "1.45.3",
"@types/node": "^18.15.0",
"cross-env": "7.0.3",
"eslint": "^9.17.0",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-visual-complexity": "0.1.4",
"globals": "15.13.0",
"knip": "^5.41.0",
"lint-staged": "^15.2.11",
"markdown-magic": "3.3.0",
"np": "10.1.0",
"prettier": "3.4.2",
"publint": "0.2.12",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "^8.18.1",
"vitest": "2.1.8"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/playwright-magic-steps.git"
},
"keywords": [
"playwright",
"steps",
"testing",
"e2e"
],
"funding": "https://github.com/sponsors/vitalets",
"license": "MIT"
}