forked from angular-eslint/angular-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.56 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 4.56 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@angular-eslint/angular-eslint",
"private": true,
"description": "The tooling which enables ESLint to work with Angular projects",
"volta": {
"node": "22.22.0"
},
"packageManager": "pnpm@10.30.3",
"contributors": [
"James Henry <angular-eslint@jameshenry.email>"
],
"license": "MIT",
"repository": "angular-eslint/angular-eslint",
"bugs": {
"url": "https://github.com/angular-eslint/angular-eslint/issues"
},
"scripts": {
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"e2e": "nx e2e e2e",
"update-e2e-snapshots-ci": "nx e2e-ci e2e --configuration updateSnapshot",
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"postinstall": "node tools/scripts/postinstall.js",
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm format-check",
"format": "node node_modules/prettier/bin/prettier.cjs --write \"./**/*.{ts,js,json,md}\"",
"format-check": "node node_modules/prettier/bin/prettier.cjs --check \"./**/*.{ts,js,json,md}\"",
"lint": "nx run-many -t lint",
"typecheck": "nx run-many -t typecheck",
"typecheck-workspace": "tsc -b --pretty --verbose",
"release": "tsx tools/scripts/release.ts",
"check-rule-docs": "nx run-many -t check-rule-docs",
"update-rule-docs": "nx run-many -t update-rule-docs",
"check-rule-lists": "nx run-many -t check-rule-lists",
"update-rule-lists": "nx run-many -t update-rule-lists",
"update-rule-configs": "nx run-many -t update-rule-configs",
"update-native-event-names": "nx run utils:update-native-event-names",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js,json,md}": [
"node node_modules/prettier/bin/prettier.cjs --write"
]
},
"devDependencies": {
"@angular/cli": "catalog:",
"@angular/compiler": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@eslint/core": "catalog:",
"@eslint/js": "catalog:",
"@mdn/browser-compat-data": "catalog:",
"@nx/devkit": "catalog:",
"@nx/esbuild": "catalog:",
"@nx/eslint": "catalog:",
"@nx/eslint-plugin": "catalog:",
"@nx/js": "catalog:",
"@nx/plugin": "catalog:",
"@nx/vite": "catalog:",
"@nx/workspace": "catalog:",
"@schematics/angular": "catalog:",
"@swc-node/register": "catalog:",
"@swc/cli": "catalog:",
"@swc/core": "catalog:",
"@swc/helpers": "catalog:",
"@types/node": "catalog:",
"@types/semver": "catalog:",
"@types/yargs": "catalog:",
"@typescript-eslint/rule-tester": "catalog:typescript-eslint",
"@typescript-eslint/types": "catalog:typescript-eslint",
"@typescript-eslint/utils": "catalog:typescript-eslint",
"@vitest/coverage-v8": "catalog:",
"cz-conventional-changelog": "catalog:",
"esbuild": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"execa": "catalog:",
"husky": "catalog:",
"json-schema-to-typescript": "catalog:",
"json-schema-traverse": "catalog:",
"jsonc-eslint-parser": "catalog:",
"lint-staged": "catalog:",
"ncp": "catalog:",
"nx": "catalog:",
"picocolors": "catalog:",
"pkg-pr-new": "catalog:",
"prettier": "catalog:",
"tree-kill": "catalog:",
"ts-node": "catalog:",
"tslib": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:typescript-eslint",
"verdaccio": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"yargs": "catalog:"
},
"pnpm": {
"patchedDependencies": {
"@typescript-eslint/rule-tester": "tools/patches/@typescript-eslint__rule-tester.patch"
}
},
"nx": {
"targets": {
"check-rule-configs": {
"dependsOn": [
"update-rule-configs"
],
"command": "git diff --quiet --exit-code -- packages/angular-eslint/src/configs packages/eslint-plugin/src/configs packages/eslint-plugin-template/src/configs || (echo \"\n-------\n\nCHECK RULE CONFIGS ERROR: You have uncommitted changes to the generated rule configs.\n\nYou should run 'pnpm update-rule-configs' and commit the result.\n\n-------\n\" && exit 1)"
},
"update-rule-configs": {
"dependsOn": [
"utils:build",
"^build"
],
"outputs": [
"{projectRoot}/configs"
],
"command": "tsx tools/scripts/generate-configs.ts"
}
},
"includedScripts": []
},
"dependencies": {}
}