-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.95 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
{
"name": "eslint-plugin-monitolint",
"version": "1.1.2",
"description": "",
"engines": {
"node": ">=8.10.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsup src/index.ts --no-splitting --minify",
"lint": "run-s lint:ts lint:eslint lint:prettier",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint '**/*.{js,ts}'",
"lint:prettier": "prettier '**/*.{js,ts,json,yaml,md}'",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --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",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"eslint": ">=5.16.0"
},
"devDependencies": {
"@types/eslint": "^8.21.2",
"@types/jest": "^29.4.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{js,ts}": [
"lint --fix",
"prettier --write"
],
"*.{json,yaml,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/theodo/monitolint.git"
},
"keywords": [
"typescript",
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Theodo",
"bugs": {
"url": "https://github.com/theodo/monitolint/issues"
},
"homepage": "https://github.com/theodo/monitolint#readme"
}