forked from kotarella1110/typescript-template-eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.94 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-xxxx",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "run-s lint:ts lint:eslint lint:prettier",
"lint:ts": "tsc --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",
"fix:prettier": "prettier '**/*.{js,ts,yaml,md}' --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"release": "semantic-release",
"add-rule": "ts-node scripts/add-rule",
"update": "ts-node scripts/update"
},
"peerDependencies": {
"eslint": ">=5.16.0"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/???/eslint-plugin-xxxx.git"
},
"keywords": [
"typescript",
"template",
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/???/eslint-plugin-xxxx/issues"
},
"homepage": "https://github.com/???/eslint-plugin-xxxx#readme",
"dependencies": {
"@typescript-eslint/utils": "^5.59.1"
}
}