-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "eslint-plugin-with-tsc-error",
"version": "0.0.8",
"main": "dist/index.js",
"repository": "https://github.com/mkusaka/eslint-plugin-with-tsc-error.git",
"bugs": {
"url": "https://github.com/mkusaka/eslint-plugin-prefer-type-annotate/issues"
},
"homepage": "https://github.com/mkusaka/eslint-plugin-prefer-type-annotate",
"author": "mkusaka <[email protected]>",
"license": "MIT",
"scripts": {
"start": "tsc --watch src",
"build": "rm -rf dist && tsc -p .",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/eslint": "^7.2.11",
"@types/estree": "^0.0.47",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": false
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^4.25.0",
"compare-versions": "^3.6.0",
"tslib": "^2.2.0"
},
"files": [
"dist",
"src"
],
"peerDependencies": {
"@typescript-eslint/parser": "*",
"eslint": "*",
"typescript": "*"
}
}