-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "eslint-config-typescript-tc",
"version": "0.0.0",
"description": "ESLint shareable config for TypeScript projects",
"keywords": [
"eslintconfig",
"code",
"quality",
"style",
"lint",
"linter",
"eslint",
"code style",
"typescript"
],
"homepage": "https://github.com/tclindner/eslint-config-typescript-tc",
"bugs": {
"url": "https://github.com/tclindner/eslint-config-typescript-tc/issues"
},
"author": "Thomas Lindner",
"repository": {
"type": "git",
"url": "https://github.com/tclindner/eslint-config-typescript-tc.git"
},
"files": [
"index.js",
"rules",
"CONTRIBUTING.md"
],
"main": "index.js",
"scripts": {
"eslint": "eslint --ext .js,.ts . --ignore-pattern 'test/fixtures/*'",
"lint": "npm run npmpackagejsonlint && npm run eslint",
"npmpackagejsonlint": "npmPkgJsonLint .",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"enhanced-resolve": "^5.18.0",
"eslint": "^8.57.1",
"eslint-config-tc": "^26.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unicorn": "^56.0.1",
"is-plain-obj": "^3.0.0",
"jest": "^29.7.0",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-tc": "^8.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"dependencies": {
"eslint-config-prettier": "^10.0.1"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.57.1"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=9.0.0"
},
"license": "MIT"
}