typescript-eslint-language-service
Version:
TypeScript language service plugin for ESLint
79 lines (78 loc) • 2.14 kB
JSON
{
"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 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": "yarn prettier --write",
"format:check": "yarn prettier --check",
"e2e": "jest --config e2e/jest.config.json",
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"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.37.0",
"@types/estree": "1.0.0",
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"fretted-strings": "1.0.1",
"husky": "8.0.3",
"jest": "29.5.0",
"pinst": "3.0.0",
"prettier": "2.8.7",
"pretty-quick": "3.1.3",
"rimraf": "4.4.1",
"ts-jest": "29.1.0",
"typescript": "5.0.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
},
"dependencies": {}
}