-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 980 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 980 Bytes
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
{
"name": "github",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tests": "npx playwright test tests/independent-tests/ && npx playwright test tests/dependent-tests/",
"headed": "npx playwright test --headed",
"debug": "npx playwright test --debug",
"help": "npx playwright test --help",
"chromium": "npx playwright test --project=chromium",
"egde": "npx playwright test --project=Microsoft Edge",
"webkit": "npx playwright test --project=webkit",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.28.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-plugin-no-loops": "^0.3.0",
"playwright": "^1.28.1"
},
"dependencies": {
"uuid": "^9.0.0"
}
}