-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "typescript-eslint-language-service",
"version": "5.0.5",
"description": "TypeScript language service plugin for ESLint",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf -g local lib \"e2e/**/*.log\"",
"build": "tsc -p tsconfig.build.json",
"build:local": "tsc -p tsconfig.build.json --outDir local",
"lint": "eslint \"src/**/*.ts\" \"e2e/**/*.ts\"",
"test": "jest",
"prettier": "prettier \"*.md\" \"*.json\" \"*.yml\" \"src/**/*\" \"e2e/**/*\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"e2e": "jest --config e2e/jest.config.json",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quramy/typescript-eslint-language-service.git"
},
"keywords": [
"TypeScript",
"ESLint"
],
"author": "Quramy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quramy/typescript-eslint-language-service/issues"
},
"peerDependencies": {
"@typescript-eslint/parser": ">= 5.0.0",
"eslint": ">= 8.0.0",
"typescript": ">= 4.0.0"
},
"homepage": "https://github.com/Quramy/typescript-eslint-language-service#readme",
"devDependencies": {
"@types/eslint": "8.56.12",
"@types/estree": "1.0.6",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"fretted-strings": "2.0.0",
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "3.3.3",
"pretty-quick": "4.0.0",
"rimraf": "5.0.10",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}