forked from zignd/HTML-CSS-Class-Completion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.6 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
{
"name": "html-css-class-completion",
"displayName": "IntelliSense for CSS class names in HTML",
"description": "CSS class name completion for the HTML class attribute based on the definitions found in your workspace.",
"version": "1.18.0",
"publisher": "Zignd",
"engines": {
"vscode": "^1.19.0"
},
"keywords": [
"html",
"css",
"class",
"autocomplete",
"multi-root ready"
],
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "html-css-class-completion.cache",
"title": "Cache CSS class definitions"
}
],
"configuration": [
{
"title": "CSS Class Completion",
"properties": {
"html-css-class-completion.includeGlobPattern": {
"type": "string",
"default": "**/*.{css,html}",
"description": "A glob pattern that defines files and folders to search for. The glob pattern will be matched against the paths of resulting matches relative to their workspace."
},
"html-css-class-completion.excludeGlobPattern": {
"type": "string",
"default": "",
"description": "A glob pattern that defines files and folders to exclude. The glob pattern will be matched against the file paths of resulting matches relative to their workspace."
},
"html-css-class-completion.enableEmmetSupport": {
"type": "boolean",
"default": false,
"description": "Enables completion when you're writing Emmet abbreviations."
}
}
}
]
},
"icon": "images/icon.png",
"repository": {
"url": "https://github.com/Zignd/HTML-CSS-Class-Completion"
},
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/bluebird": "^3.5.19",
"@types/css": "^0.0.31",
"@types/htmlparser2": "^3.7.31",
"@types/lodash": "^4.14.92",
"@types/mocha": "^2.2.46",
"@types/node": "^7.0.52",
"@types/request": "^2.0.11",
"@types/request-promise": "^4.1.39",
"@types/verror": "^1.10.3",
"tslint": "^5.9.1"
},
"dependencies": {
"bluebird": "^3.5.1",
"css": "^2.2.4",
"htmlparser2": "^3.9.2",
"lodash": "^4.17.11",
"mocha": "^4.0.1",
"request": "^2.88.0",
"request-promise": "^4.2.1",
"source-map-support": "^0.5.3",
"typescript": "^2.6.2",
"verror": "^1.10.0",
"vscode": "^1.1.26"
}
}