UNPKG

1.47 kBJSONView Raw
1{
2 "name": "@typescript-eslint/eslint-plugin-tslint",
3 "version": "4.0.1",
4 "main": "dist/index.js",
5 "typings": "src/index.ts",
6 "description": "TSLint wrapper plugin for ESLint",
7 "keywords": [
8 "eslint",
9 "eslintplugin",
10 "eslint-plugin",
11 "tslint"
12 ],
13 "engines": {
14 "node": "^10.12.0 || >=12.0.0"
15 },
16 "files": [
17 "dist",
18 "package.json",
19 "README.md",
20 "LICENSE"
21 ],
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/typescript-eslint/typescript-eslint.git",
25 "directory": "packages/eslint-plugin-tslint"
26 },
27 "bugs": {
28 "url": "https://github.com/typescript-eslint/typescript-eslint/issues"
29 },
30 "license": "MIT",
31 "scripts": {
32 "build": "tsc -b tsconfig.build.json",
33 "clean": "tsc -b tsconfig.build.json --clean",
34 "postclean": "rimraf dist",
35 "format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ../../.prettierignore",
36 "lint": "eslint . --ext .js,.ts --ignore-path='../../.eslintignore'",
37 "test": "jest --coverage",
38 "typecheck": "tsc -p tsconfig.json --noEmit"
39 },
40 "dependencies": {
41 "@typescript-eslint/experimental-utils": "4.0.1",
42 "lodash": "^4.17.15"
43 },
44 "peerDependencies": {
45 "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0",
46 "tslint": "^5.0.0 || ^6.0.0",
47 "typescript": "*"
48 },
49 "devDependencies": {
50 "@types/lodash": "*",
51 "@typescript-eslint/parser": "4.0.1"
52 },
53 "gitHead": "46ad4d051d8b58e003cb70f7f449218b5d354391"
54}