forked from zignd/HTML-CSS-Class-Completion
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
128 lines (128 loc) · 4.16 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
118
119
120
121
122
123
124
125
126
127
128
{
"name": "html-slim-scss-css-class-completion",
"displayName": "SCSS Everywhere",
"description": "'.class' and '#id' completion for HTML, Svelte, Latte, Slim, Liquid, TSX/JSX, Haml, Elixir, Smarty, PHP, ERB, Javascript, CSS and SCSS. Just declare class in your template or CSS/SCSS and see it in everywhere. (Both directions)",
"version": "1.7.9",
"publisher": "gencer",
"engines": {
"vscode": "^1.19.0"
},
"keywords": [
"html",
"slim",
"haml",
"scss",
"css",
"eex",
"typescript",
"react",
"latte",
"elixir",
"liquid",
"autocomplete"
],
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"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,scss,sass,eex,slim,tsx,jsx,haml,svelte,liquid,tpl,latte,php,html,twig}",
"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.searchRemoteGlobPattern": {
"type": "string",
"default": "",
"description": "A glob pattern that includes html code which will be parsed if its contains Remote CSS"
},
"html-css-class-completion.excludeGlobPattern": {
"type": "string",
"default": "{node_modules,doc,docs,.bundle,vendor}/**",
"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."
},
"html-css-class-completion.enableScssFindUsage": {
"type": "boolean",
"default": false,
"description": "Enables find usage inspection for SCSS files. It can be slow for intellisense."
},
"html-css-class-completion.enableFindUsage": {
"type": "boolean",
"default": false,
"description": "Enables find usage inspection for template files. It can be slow for intellisense."
},
"html-css-class-completion.remoteStyleSheets": {
"type": "array",
"default": [],
"description": "An array contains remote CSS files. Those remotes will be fetched and cached."
}
}
}
]
},
"icon": "images/icon.png",
"repository": {
"url": "https://github.com/gencer/SCSS-Everywhere"
},
"galleryBanner": {
"color": "#AA83C4",
"theme": "dark"
},
"main": "./dist/extension",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/bluebird": "^3.5.19",
"@types/cheerio": "^0.22.17",
"@types/css": "^0.0.31",
"@types/fs-extra": "^8.1.0",
"@types/htmlparser2": "^3.7.2",
"@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",
"ts-loader": "^6.0.4",
"tslint": "^5.9.1",
"vscode": "^1.1.6",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.3",
"css": "^2.2.4",
"fs-extra": "^9.0.0",
"htmlparser2": "^3.9.2",
"lodash": "^4.17.15",
"mocha": "^4.0.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"source-map-support": "^0.5.3",
"typescript": "^2.6.2",
"verror": "^1.10.0"
}
}