-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.08 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
{
"name": "eslint-plugin-angular-class-ordering",
"version": "0.7.3",
"description": "ESLint plugin: Angular class member ordering, prefer-inject-function, forbid-nested-super-injections",
"author": "Leritas <i@leritas.ru>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib",
"docs",
"README.md",
"LICENSE"
],
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"angular",
"member-ordering",
"inject",
"dependency-injection",
"signals",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Leritas/eslint-plugin-angular-class-ordering.git"
},
"bugs": {
"url": "https://github.com/Leritas/eslint-plugin-angular-class-ordering/issues"
},
"homepage": "https://github.com/Leritas/eslint-plugin-angular-class-ordering#readme",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"scripts": {
"inst": "npm install --registry https://registry.npmjs.org/",
"build": "tsc",
"prepublishOnly": "npm run build && npm test && npm run lint && npm run format:check",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@typescript-eslint/utils": "^8.18.0",
"@typescript-eslint/visitor-keys": "^8.18.0"
},
"peerDependencies": {
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0 || ^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/parser": "^8.18.0",
"@typescript-eslint/rule-tester": "^8.18.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}