-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.78 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.78 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
{
"name": "playwright-study",
"version": "1.0.0",
"description": "Multipurpose Playwright study repository",
"main": ".",
"directories": {
"test": "test"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-playwright": "^0.12.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"serve": "^14.2.6"
},
"scripts": {
"test": "npx playwright test --grep-invert '@visual' --project 'chromium-hd' --workers 8",
"test:match": "npx playwright test --grep-invert '@visual' --grep $MATCH --project 'chromium-hd'",
"test:visual": "npx playwright test --grep @visual --project 'chromium-hd'",
"test:e2e": "npx playwright test --grep @e2e --project 'chromium-hd'",
"test:smoke": "npx playwright test --grep @smoke --project 'chromium-hd'",
"test:ci": "npx playwright test --grep-invert '@visual' ||:",
"test:docker": "npx playwright test --grep-invert '@visual' -c playwright.config-docker.js ||:",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"lint-staged": "eslint --max-warnings 0 --report-unused-disable-directives",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ltsuda/playwright-study.git"
},
"keywords": [],
"author": "Leonardo Tsuda",
"license": "ISC",
"bugs": {
"url": "https://github.com/ltsuda/playwright-study/issues"
},
"homepage": "https://github.com/ltsuda/playwright-study#readme",
"lint-staged": {
"**/*.{js,ts,md}": [
"npm run lint-staged",
"prettier --write"
]
}
}