-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 956 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 956 Bytes
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
{
"name": "@ymnb-jp/eslint-plugin",
"version": "0.0.0",
"main": "dist/index.js",
"author": "Kazumi Inada <hello@nandenjin.com>",
"license": "UNLICENSED",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "eslint . --ext ts",
"lintfix": "eslint . --ext ts --fix",
"format": "prettier --write \"**/*.{js,ts,tsx,jsx,json,md,yml,yaml}\"",
"prepare": "husky install"
},
"dependencies": {
"@typescript-eslint/utils": "^5.38.1",
"cheerio": "^1.0.0-rc.12",
"eslint-html-parser": "^6.8.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"husky": ">=7",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,ts,tsx,jsx,json,md,yml,yaml}": "prettier --write"
}
}