forked from typescript-eslint/tslint-to-eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.49 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
75
76
77
78
79
80
{
"bin": {
"tslint-to-eslint-config": "bin/tslint-to-eslint-config"
},
"bugs": {
"url": "https://github.com/typescript-eslint/tslint-to-eslint-config/issues"
},
"description": "Converts your TSLint configuration to the closest reasonable ESLint equivalent.",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"chalk": "4.1.1",
"commander": "7.2.0",
"cson-parser": "4.0.9",
"eslint-config-prettier": "8.3.0",
"glob": "7.1.7",
"json5": "2.2.0",
"lodash": "4.17.21",
"minimatch": "3.0.4",
"tslint": "6.1.3",
"typescript": "4.2.4"
},
"devDependencies": {
"@babel/core": "7.14.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.2",
"@babel/plugin-proposal-optional-chaining": "7.14.2",
"@babel/preset-env": "7.14.2",
"@babel/preset-typescript": "7.13.0",
"@types/eslint-config-prettier": "6.11.0",
"@types/glob": "7.1.3",
"@types/jest": "26.0.23",
"@types/json5": "0.0.30",
"@types/lodash": "4.14.169",
"@types/minimatch": "3.0.4",
"@types/node": "12.20.13",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"babel-jest": "26.6.3",
"eslint": "7.26.0",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"strip-ansi": "6.0.0"
},
"homepage": "https://github.com/typescript-eslint/tslint-to-eslint-config#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"eslint",
"tslint",
"lint",
"configuration"
],
"license": "MIT",
"lint-staged": {
"**/*.{js,json,ts,xml,yaml}": [
"prettier --write"
]
},
"main": "./src/index.js",
"name": "tslint-to-eslint-config",
"repository": {
"type": "git",
"url": "github:typescript-eslint/tslint-to-eslint-config"
},
"scripts": {
"eslint": "eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives",
"prettier": "prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore",
"prettier:write": "npm run prettier -- --write",
"test": "jest",
"test:ci": "jest --coverage --maxWorkers=2",
"tsc": "tsc"
},
"version": "2.4.1"
}