-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.12 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
{
"name": "@rdlabo/eslint-plugin-rules",
"private": false,
"version": "22.0.0",
"description": "",
"engines": {
"node": ">=20.0.0"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./typescript": "./dist/typescript.js",
"./dist": "./dist/index.js",
"./dist/*.js": "./dist/*.js",
"./dist/*": "./dist/*.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"package.json",
"docs"
],
"scripts": {
"prepare": "husky install",
"build": "tsc",
"clean": "rimraf dist",
"lint": "run-s lint:ts lint:eslint lint:prettier",
"lint:ts": "npm run build -- --noEmit",
"lint:eslint": "eslint '**/*.{js,ts}'",
"lint:prettier": "prettier '**/*.{js,ts,yaml,md}' --check",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fmt": "prettier '**/*.{js,ts,yaml,md}' --write",
"test": "npm run build && jest && node scripts/test-package-exports.mjs",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepack": "run-s clean build",
"prerelease": "npm run build",
"release": "np --no-tests --no-publish",
"add-rule": "ts-node --project scripts/tsconfig.json scripts/add-rule",
"update": "ts-node --project scripts/tsconfig.json scripts/update",
"inspect": "npx @eslint/config-inspector"
},
"peerDependencies": {
"@angular-eslint/template-parser": ">=21.0.0 <23.0.0",
"@ionic/angular": ">=9.0.0 <10.0.0",
"@ionic/core": ">=9.0.0 <10.0.0",
"@typescript-eslint/utils": ">=8.33.0 <9.0.0",
"eslint": ">=9.0.0"
},
"peerDependenciesMeta": {
"@angular-eslint/template-parser": {
"optional": true
},
"@ionic/angular": {
"optional": true
},
"@ionic/core": {
"optional": true
}
},
"devDependencies": {
"@angular-eslint/template-parser": "^22.1.0",
"@angular-eslint/test-utils": "^22.1.0",
"@angular/compiler": "^22.1.2",
"@ionic/core": "^9.0.0",
"@types/eslint": "^9.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.19.43",
"@typescript-eslint/rule-tester": "^8.67.0",
"@typescript-eslint/utils": "^8.67.0",
"eslint": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.1",
"np": "^10.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.4",
"rimraf": "^5.0.0",
"rxjs": "^7.8.2",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdlabo-dev/eslint-plugin-rules.git"
},
"keywords": [
"typescript",
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Masahiko Sakakibara<sakakibara@rdlabo.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdlabo-dev/eslint-plugin-rules/issues"
},
"homepage": "https://docs.rdlabo.dev/projects/eslint-plugin-rules",
"dependencies": {
"ts-api-utils": "2.1.0"
}
}