-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.08 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
{
"name": "lvmama-fix",
"displayName": "lvmama fix",
"description": "使用驴妈妈Eslint规则检查并自动修复代码中的问题",
"version": "1.3.0",
"publisher": "Sky",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.lvmamaFix",
"onCommand:extension.lvmamaFixAll"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.lvmamaFix",
"title": "修复当前文件",
"category": "lvmama fix",
"icon": {
"light": "./images/light.png",
"dark": "./images/dark.png"
}
},
{
"command": "extension.lvmamaFixAll",
"title": "修复指定目录下所有文件",
"category": "lvmama fix"
}
],
"menus": {
"editor/title": [
{
"command": "extension.lvmamaFix",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "extension.lvmamaFix",
"key": "ctrl+L",
"mac": "cmd+L",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "lvmama fix 配置项",
"properties": {
"lvmamaFix.excludeFolders": {
"type": "array",
"default": ["node_modules", "dist", "dest"],
"description": "修复指定目录下所有文件时,排除的子目录的名称"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LVMM-H5/lvmama-fix.git"
},
"homepage": "https://github.com/LVMM-H5/lvmama-fix#readme",
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"@types/node": "^7.0.0",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"eslint": "^3.19.0",
"eslint-config-lvmama": "^1.1.5",
"eslint-plugin-html": "^3.2.1",
"js-beautify": "^1.7.3"
},
"icon": "images/logo.png"
}