-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "eslint-plugin-typescript-inheritance",
"version": "1.0.1",
"description": "ESLint typescript plugin to control class inheritance",
"keywords": [
"eslint",
"plugin",
"typescript",
"inheritance",
"abstract",
"oop"
],
"repository": "lsndr/eslint-plugin-typescript-inheritance",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint \"**/*.{js,ts,tsx,json}\" --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"lint:fix-staged": "lint-staged",
"build": "rimraf ./dist && tsc -p ./tsconfig.build.json",
"test:build": "tsc -p ./tsconfig.test.json",
"prepare": "husky install && npm run build"
},
"author": {
"name": "lsndr",
"email": "alexander@lsndr.me",
"url": "https://lsndr.me"
},
"license": "MIT",
"lint-staged": {
"**/*.{js,ts,tsx,json}": "eslint --fix --max-warnings=0",
"**/*": "prettier --write"
},
"dependencies": {
"@typescript-eslint/utils": "^7.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^8.56.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@typescript-eslint/rule-tester": "^7.6.0",
"@typescript-eslint/types": "^7.6.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.8",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}