-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "tslint-plugin-prettier",
"version": "2.3.0",
"description": "Runs Prettier as a TSLint rule and reports differences as individual TSLint issues.",
"keywords": [
"prettier",
"tslint",
"tslint-plugin",
"tslint-rules"
],
"main": "rules/index.js",
"types": "rules/index.d.ts",
"repository": "https://github.com/prettier/tslint-plugin-prettier",
"homepage": "https://github.com/prettier/tslint-plugin-prettier#readme",
"author": {
"name": "Ika",
"email": "[email protected]",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn run build --inlineSourceMap false",
"lint": "tslint -p .",
"test": "nyc tslint --test ./tests/*/*",
"prebuild": "rm -rf ./rules",
"build": "tsc -p ./tsconfig.build.json",
"release": "standard-version"
},
"dependencies": {
"eslint-plugin-prettier": "^2.2.0",
"lines-and-columns": "^1.1.6",
"tslib": "^1.7.1"
},
"devDependencies": {
"@types/eslint-plugin-prettier": "2.2.0",
"@types/node": "4.9.3",
"@types/prettier": "2.2.3",
"codecov": "3.7.1",
"nyc": "11.9.0",
"prettier": "2.2.1",
"standard-version": "4.4.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "4.2.4"
},
"peerDependencies": {
"prettier": "^1.9.0 || ^2.0.0",
"tslint": "^5.0.0 || ^6.0.0"
},
"resolutions": {
"codecov/**/har-validator": "5.1.0"
},
"engines": {
"node": ">= 4"
},
"files": [
"/rules/**/*"
]
}