-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.82 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.82 KB
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
{
"name": "vs-html-to-css",
"displayName": "VS HTML to CSS",
"description": "Generate CSS classes from HTML structure",
"version": "1.0.0",
"publisher": "neptunedesign",
"author": {
"name": "Fortez Fabrice",
"email": "contact@neptune-design.fr",
"url": "https://neptune-design.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/neptunedesign/vs-html-to-css"
},
"engines": {
"vscode": "^1.32.0"
},
"keywords": [
"html",
"css",
"productivity"
],
"categories": [
"Formatters",
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#423B55",
"theme": "dark"
},
"activationEvents": [
"onCommand:vs-html-to-css.generate"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "vs-html-to-css.generate",
"title": "HTML to CSS : Generate"
}
],
"keybindings": {
"command": "vs-html-to-css.generate",
"key": "alt+x",
"when": "editorHasSelection"
},
"configuration": {
"type": "object",
"title": "VS HTML to CSS",
"properties": {
"vs-html-to-css.append": {
"default": " {\n}\n",
"description": "Character(s) to be added after the classes CSS (including blank spaces)"
},
"vs-html-to-css.disableNotification": {
"type": "boolean",
"default": false,
"description": "Disable notification"
},
"vs-html-to-css.ignore": {
"type": "array",
"default": [
"container",
"row"
],
"description": "Lists of classes CSS to ignore"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.14.8",
"eslint": "^5.16.0",
"typescript": "^3.5.1",
"vscode": "^1.1.34"
},
"dependencies": {
"collect.js": "^4.12.5"
}
}