-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "wtr-playwright-commands",
"version": "0.1.0",
"description": "Custom commands for interacting with Playwright within Web Test Runner tests.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./plugin.js": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
}
},
"scripts": {
"build": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mvromer/wtr-playwright-commands.git"
},
"keywords": [
"wds",
"wtr",
"playwright",
"commands",
"plugin"
],
"author": "Michael Romer",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvromer/wtr-playwright-commands/issues"
},
"homepage": "https://github.com/mvromer/wtr-playwright-commands#readme",
"peerDependencies": {
"@web/test-runner": "^0.17",
"@web/test-runner-playwright": "^0.10"
},
"prettier": {
"semi": true,
"singleQuote": true
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@web/test-runner": "^0.17.1",
"@web/test-runner-playwright": "^0.10.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}