-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.99 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "tsfmt-vscode",
"displayName": "tsfmt - TypeScript Formatter",
"description": "VSCode extension for TypeScript Formatter (tsfmt)",
"version": "0.3.3",
"publisher": "eternalphane",
"author": "Zongyuan Zuo <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/EternalPhane/tsfmt-vscode#readme",
"repository": {
"type": "git",
"url": "https://github.com/EternalPhane/tsfmt-vscode.git"
},
"bugs": {
"url": "https://github.com/EternalPhane/tsfmt-vscode/issues"
},
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Formatters"
],
"keywords": [
"tsfmt",
"vscode"
],
"activationEvents": [
"onLanguage:typescript"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "TypeScript Formatter (tsfmt) Configuration",
"properties": {
"tsfmt.configPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to `tsfmt.json`. If not specified, the one closest to the formatted file will be used"
},
"tsfmt.logLevel": {
"type": "string",
"enum": [
"error",
"warning",
"information"
],
"default": "error",
"description": "The verbosity of logging in the Output Panel. `error` < `warning` < `information`"
},
"tsfmt.notification": {
"type": "string",
"enum": [
"enabled",
"disabled"
],
"default": "enabled",
"description": "Whether or not to show notifications. This does not affect `tsfmt.logLevel`"
},
"tsfmt.tsconfig.configPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to `tsconfig.json`. If not specified, the one closest to the formatted file will be used"
},
"tsfmt.tslint.autoFix": {
"type": "string",
"enum": [
"enabled",
"disabled"
],
"default": "disabled",
"description": "Fix all auto-fixable tslint failures after formatting"
},
"tsfmt.tslint.configPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to `tslint.json`. If not specified, the one closest to the formatted file will be used"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"bump-version": "ts-node ./script/bump-version.ts",
"release": "ts-node ./script/release.ts"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.4",
"@types/request-promise-native": "^1.0.15",
"@types/url-template": "^2.0.28",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"semver": "^5.6.0",
"ts-node": "^7.0.1",
"typescript-tslint-plugin": "^0.5.0",
"url-template": "^2.0.8",
"vscode": "^1.1.34"
},
"dependencies": {
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"typescript-formatter": "^7.2.2"
}
}