-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "eslint-plugin-playwright",
"description": "ESLint plugin for Playwright testing.",
"version": "0.0.0-semantically-released",
"repository": "https://github.com/playwright-community/eslint-plugin-playwright",
"author": "Mark Skelton <[email protected]>",
"packageManager": "[email protected]",
"contributors": [
"Max Schmitt <[email protected]>"
],
"license": "MIT",
"workspaces": [
"examples"
],
"engines": {
"node": ">=16.6.0"
},
"type": "module",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
}
},
"files": [
"dist",
"index.js",
"index.cjs",
"index.d.ts"
],
"scripts": {
"build": "tsup src/index.ts --format cjs --out-dir dist",
"lint": "eslint .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "vitest",
"test:watch": "vitest --reporter=dot",
"ts": "tsc --noEmit"
},
"peerDependencies": {
"eslint": ">=8.40.0"
},
"dependencies": {
"globals": "^13.23.0"
},
"devDependencies": {
"@mskelton/eslint-config": "^9.0.1",
"@mskelton/semantic-release-config": "^1.0.1",
"@types/estree": "^1.0.6",
"@types/node": "^20.11.17",
"@typescript-eslint/parser": "^8.11.0",
"dedent": "^1.5.1",
"eslint": "^9.13.0",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.3.0",
"semantic-release": "^23.0.2",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"vitest": "^1.3.1"
}
}