UNPKG

2.21 kBJSONView Raw
1{
2 "name": "@typescript-eslint/eslint-plugin",
3 "version": "2.20.0",
4 "description": "TypeScript plugin for ESLint",
5 "keywords": [
6 "eslint",
7 "eslintplugin",
8 "eslint-plugin",
9 "typescript"
10 ],
11 "engines": {
12 "node": "^8.10.0 || ^10.13.0 || >=11.10.1"
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 "format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ../../.prettierignore",
37 "generate:configs": "../../node_modules/.bin/ts-node --files --transpile-only tools/generate-configs.ts",
38 "generate:rules-lists": "../../node_modules/.bin/ts-node --files --transpile-only tools/generate-rules-lists.ts",
39 "lint": "eslint . --ext .js,.ts --ignore-path ../../.eslintignore",
40 "test": "jest --coverage",
41 "typecheck": "tsc -p tsconfig.json --noEmit"
42 },
43 "dependencies": {
44 "@typescript-eslint/experimental-utils": "2.20.0",
45 "eslint-utils": "^1.4.3",
46 "functional-red-black-tree": "^1.0.1",
47 "regexpp": "^3.0.0",
48 "tsutils": "^3.17.1"
49 },
50 "devDependencies": {
51 "@types/json-schema": "^7.0.3",
52 "@types/marked": "^0.7.1",
53 "@types/prettier": "^1.18.2",
54 "chalk": "^3.0.0",
55 "marked": "^0.7.0",
56 "prettier": "*",
57 "typescript": "*"
58 },
59 "peerDependencies": {
60 "@typescript-eslint/parser": "^2.0.0",
61 "eslint": "^5.0.0 || ^6.0.0"
62 },
63 "peerDependenciesMeta": {
64 "typescript": {
65 "optional": true
66 }
67 },
68 "funding": {
69 "type": "opencollective",
70 "url": "https://opencollective.com/typescript-eslint"
71 },
72 "gitHead": "f9dd7ec3b4589bc283b596e045ca50a3f5475242"
73}