-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
70
71
72
73
74
75
76
77
78
79
{
"name": "eslint-plugin-angular-template-consistent-this",
"version": "0.7.1",
"description": "ESLint Angular Template consistent this for properties, variables & template references",
"keywords": [
"eslint",
"eslintrule",
"eslint-rule",
"eslintplugin",
"eslint-plugin",
"angular",
"angular-template",
"html"
],
"homepage": "https://github.com/jerone/eslint-plugin-angular-template-consistent-this",
"repository": {
"type": "git",
"url": "git+https://github.com/jerone/eslint-plugin-angular-template-consistent-this.git"
},
"license": "MIT",
"author": "Jeroen van Warmerdam <[email protected]>",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -p tsconfig.build.json",
"clean": "rimraf dist coverage",
"lint": "lockfile-lint && eslint -f checklist .",
"lint:fix": "prettier --write \"**/*\" & eslint -f checklist --fix .",
"prepack": "npm run build && npx clean-package",
"postpack": "npx clean-package restore",
"security:eslint": "eslint -f @microsoft/eslint-formatter-sarif -o eslint-results.sarif .",
"test": "npm run clean && jest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@angular-eslint/template-parser": "16.2.0",
"@angular-eslint/utils": "16.2.0",
"@angular/compiler": "16.2.5",
"@cspell/eslint-plugin": "7.3.6",
"@microsoft/eslint-formatter-sarif": "3.0.0",
"@types/eslint": "8.44.2",
"@types/jest": "29.5.5",
"@types/node": "20.6.2",
"@types/semver": "7.5.2",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"cross-env": "7.0.3",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-checklist": "0.1.0",
"eslint-plugin-eslint-plugin": "5.1.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-json-files": "3.0.0",
"eslint-plugin-markdownlint": "0.5.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-security": "1.7.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"lockfile-lint": "4.12.1",
"rimraf": "5.0.1",
"semver": "7.6.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"peerDependencies": {
"@angular-eslint/template-parser": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"eslint": "^7.0.0 || ^8.0.0"
},
"engines": {
"node": ">=14.15.0"
},
"clean-package": {
"remove": [
"clean-package",
"devDependencies",
"scripts"
]
}
}