-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.23 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
80
81
82
83
84
85
{
"name": "@typescript-eslint/eslint-plugin-tslint",
"version": "6.20.0",
"main": "dist/index.js",
"typings": "src/index.ts",
"description": "ESLint plugin that wraps a TSLint configuration and lints the whole source using TSLint",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": "^16.0.0 || >=18.0.0"
},
"repository": "typescript-eslint/eslint-plugin-tslint",
"bugs": {
"url": "https://github.com/typescript-eslint/eslint-plugin-tslint/issues"
},
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"tslint"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"clean": "tsc -b tsconfig.json --clean",
"pre-commit": "yarn lint-staged",
"postclean": "rimraf dist && rimraf coverage",
"format": "prettier .",
"lint": "eslint .",
"test": "jest --coverage",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@typescript-eslint/utils": "^6.20.0"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"tslint": "^5.0.0 || ^6.0.0",
"typescript": "*"
},
"devDependencies": {
"@swc/core": "^1.3.107",
"@swc/jest": "^0.2.34",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"console-fail-test": "^0.2.3",
"eslint": "^8.56.0",
"eslint-plugin-comments": "^1.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.2.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^9.0.10",
"jest": "29.7.0",
"lint-staged": "^15.2.1",
"prettier": "^3.0.3",
"rimraf": "*",
"tslint": "^6.1.3",
"typescript": "^5.3.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
}