-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "eslint-plugin-angular-test-ids",
"version": "1.0.6",
"description": "Eslint rule that enforces test-id attributes on elements in Angular templates.",
"main": "dist/index.js",
"repository": "[email protected]:undsoft/eslint-plugin-angular-test-ids.git",
"author": "Evgeny Stepanovych <[email protected]>",
"homepage": "[email protected]:undsoft/eslint-plugin-angular-test-ids.git",
"license": "MIT",
"private": false,
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"angular"
],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "yarn clean && tsc",
"test": "jest",
"prepack": "yarn build"
},
"devDependencies": {
"@angular-eslint/eslint-plugin-template": "^15.2.0",
"@angular-eslint/template-parser": "^15.2.0",
"@angular-eslint/utils": "^15.0.0",
"@angular/compiler": "^15.1.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/utils": "^5.50.0",
"eslint": "^8.33.0",
"jest": "^29.4.1",
"microbundle": "^0.15.1",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@angular-eslint/template-parser": "^15.2.0",
"eslint": "^7.20.0 || ^8.0.0",
"typescript": "*"
}
}