-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.32 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": "@cloudflight/eslint-plugin",
"version": "1.0.1",
"private": true,
"volta": {
"node": "20.18.0",
"yarn": "4.5.1"
},
"workspaces": [
"packages/*"
],
"homepage": "https://github.com/cloudflightio/cloudflight-eslint-plugin",
"bugs": {
"url": "https://github.com/cloudflightio/cloudflight-eslint-plugin/issues"
},
"description": "",
"scripts": {
"build": "yarn workspaces foreach -pA --topological-dev run build-package",
"lint": "eslint . && eslint -c eslint.format.mjs .",
"test": "yarn workspaces foreach -pA run test-package",
"postinstall": "husky",
"publish-workspaces": "node ./scripts/prepare.mjs && yarn workspaces foreach -A --no-private npm publish"
},
"keywords": [
"eslint",
"eslintplugin"
],
"author": "Cloudflight GmbH",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/compat": "1.2.1",
"@eslint/js": "9.13.0",
"@stylistic/eslint-plugin": "2.9.0",
"@types/eslint": "9.6.1",
"@types/eslint__js": "8.42.3",
"@types/estree": "1.0.6",
"@types/jest": "29.5.14",
"@types/node": "20.17.1",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@typescript-eslint/utils": "8.11.0",
"@vue/eslint-config-typescript": "14.1.3",
"angular-eslint": "18.4.0",
"eslint": "9.13.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import-x": "4.3.1",
"eslint-plugin-json-es": "1.6.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-n": "17.11.1",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-rxjs": "5.0.3",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-vue": "9.29.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "8.11.0"
},
"lint-staged": {
"*.js": "eslint -c eslint.format.mjs --fix",
"*.ts": "eslint -c eslint.format.mjs --fix"
}
}