-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "playwright-webextext",
"version": "0.0.4",
"description": "Playwright extension for tesiting WebExtensions",
"repository": "[email protected]:ueokande/playwright-webextext.git",
"author": "Shin'ya Ueoka <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "20"
},
"scripts": {
"build": "tsc",
"test": "playwright test --headed",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-standard": "^5.0.0",
"playwright": "^1.40.1",
"playwright-core": "^1.40.1",
"prettier-eslint": "^16.2.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@playwright/test": ">=1.0.0",
"playwright": ">=1.0.0"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
},
"playwright": {
"optional": true
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
]
}