forked from typescript-eslint/tslint-to-eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.96 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
{
"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 possible ESLint equivalent.",
"dependencies": {
"chalk": "2.4.2",
"commander": "3.0.2",
"strip-json-comments": "^3.0.1",
"tslint": "5.20.0",
"typescript": "3.6.3"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/preset-env": "7.6.2",
"@babel/preset-typescript": "7.6.0",
"@types/jest": "24.0.18",
"@types/node": "12.7.8",
"@typescript-eslint/eslint-plugin": "2.3.2",
"@typescript-eslint/parser": "2.3.2",
"babel-jest": "24.9.0",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"husky": "3.0.7",
"jest": "24.9.0",
"lint-staged": "9.4.0",
"prettier": "1.18.2",
"strip-ansi": "5.2.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",
"git add"
]
},
"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",
"tsc": "tsc"
},
"version": "0.2.10"
}