-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
{
"name": "@krema/angular-eslint-stylelint-builder",
"description": "Angular CLI builder for ESLint and stylelint",
"author": "André Kremser",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "tsdown",
"test": "vitest run",
"lint": "eslint ./lib/",
"lint:fix": "eslint ./lib/ --fix",
"format:check": "prettier --check ./lib/",
"format:fix": "prettier --write ./lib/",
"preinstall": "npx only-allow pnpm"
},
"engines": {
"node": ">=20.0.0",
"pnpm": "^10"
},
"devDependencies": {
"@angular-devkit/architect": "^0.2102.7",
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"stylelint": "^16.20.0",
"ts-jest": "^29.4.6",
"tsdown": "^0.13.0",
"typescript": "^5.8.3",
"vitest": "^4.1.4"
}
}