UNPKG

2.28 kBJSONView Raw
1{
2 "name": "@typescript-eslint/eslint-plugin",
3 "version": "4.3.0",
4 "description": "TypeScript plugin for ESLint",
5 "keywords": [
6 "eslint",
7 "eslintplugin",
8 "eslint-plugin",
9 "typescript"
10 ],
11 "engines": {
12 "node": "^10.12.0 || >=12.0.0"
13 },
14 "files": [
15 "dist",
16 "docs",
17 "package.json",
18 "README.md",
19 "LICENSE"
20 ],
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/typescript-eslint/typescript-eslint.git",
24 "directory": "packages/eslint-plugin"
25 },
26 "bugs": {
27 "url": "https://github.com/typescript-eslint/typescript-eslint/issues"
28 },
29 "license": "MIT",
30 "main": "dist/index.js",
31 "scripts": {
32 "build": "tsc -b tsconfig.build.json",
33 "check:docs": "jest tests/docs.test.ts --runTestsByPath --silent --runInBand",
34 "check:configs": "jest tests/configs.test.ts --runTestsByPath --silent --runInBand",
35 "clean": "tsc -b tsconfig.build.json --clean",
36 "postclean": "rimraf dist",
37 "format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ../../.prettierignore",
38 "generate:configs": "../../node_modules/.bin/ts-node --files --transpile-only tools/generate-configs.ts",
39 "generate:rules-lists": "../../node_modules/.bin/ts-node --files --transpile-only tools/generate-rules-lists.ts",
40 "lint": "eslint . --ext .js,.ts --ignore-path ../../.eslintignore",
41 "test": "jest --coverage",
42 "typecheck": "tsc -p tsconfig.json --noEmit"
43 },
44 "dependencies": {
45 "@typescript-eslint/experimental-utils": "4.3.0",
46 "@typescript-eslint/scope-manager": "4.3.0",
47 "debug": "^4.1.1",
48 "functional-red-black-tree": "^1.0.1",
49 "regexpp": "^3.0.0",
50 "semver": "^7.3.2",
51 "tsutils": "^3.17.1"
52 },
53 "devDependencies": {
54 "@types/debug": "*",
55 "@types/marked": "^1.1.0",
56 "@types/prettier": "*",
57 "chalk": "^4.0.0",
58 "marked": "^1.0.0",
59 "prettier": "*",
60 "typescript": "*"
61 },
62 "peerDependencies": {
63 "@typescript-eslint/parser": "^4.0.0",
64 "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
65 },
66 "peerDependenciesMeta": {
67 "typescript": {
68 "optional": true
69 }
70 },
71 "funding": {
72 "type": "opencollective",
73 "url": "https://opencollective.com/typescript-eslint"
74 },
75 "gitHead": "229631e6cd90bba8f509a6d49fec72fd7a576ccf"
76}