forked from playwright-community/eslint-plugin-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
{
"name": "eslint-plugin-playwright",
"description": "ESLint plugin for Playwright testing.",
"version": "0.0.0-semantically-released",
"packageManager": "pnpm@8.4.0",
"main": "lib/index.js",
"repository": "https://github.com/playwright-community/eslint-plugin-playwright",
"author": "Mark Skelton <mark@mskelton.dev>",
"contributors": [
"Max Schmitt <max@schmitt.mx>"
],
"license": "MIT",
"files": [
"lib",
"!lib/**/*.spec.js"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"ts": "tsc"
},
"devDependencies": {
"@mskelton/eslint-config": "^8.0.0",
"@types/dedent": "^0.7.0",
"@types/eslint": "^8.40.2",
"@types/estree": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"dedent": "^0.7.0",
"eslint": "^8.43.0",
"eslint-plugin-sort": "^2.10.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.5",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"eslint": ">=7",
"eslint-plugin-jest": ">=25"
},
"peerDependenciesMeta": {
"eslint-plugin-jest": {
"optional": true
}
}
}