-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
64
65
66
67
68
69
{
"name": "@containerbase/eslint-plugin",
"version": "0.0.0-PLACEHOLDER",
"description": "containerbase eslint plugin",
"keywords": [
"eslint-plugin",
"jest",
"vitest"
],
"repository": "https://github.com/containerbase/eslint-plugin.git",
"license": "MIT",
"author": "Rhys Arkins <[email protected]>",
"contributors": [
"Michael Kriese <[email protected]>"
],
"type": "module",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"types"
],
"scripts": {
"eslint": "eslint --cache .",
"eslint-fix": "eslint --cache --fix .",
"lint": "run-s prettier eslint lint:types",
"lint:types": "run-p 'lint:types:*'",
"lint:types:default": "tsc",
"lint-fix": "run-s prettier-fix eslint-fix",
"prepare": "husky",
"prettier": "prettier --cache -c -u \"**/*.*\"",
"prettier-fix": "prettier --cache -w -u \"**/*.*\""
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/eslint-config-prettier": "6.11.3",
"@types/node": "20.17.17",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-formatter-gha": "1.5.2",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-promise": "7.2.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.8",
"semantic-release": "24.2.1",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0"
},
"peerDependencies": {
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20.9.0 || ^22.11.0",
"pnpm": "^10.0.0"
},
"publishConfig": {
"access": "public"
}
}