-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
105 lines (105 loc) · 3.33 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
{
"name": "html-to-css-autocompletion",
"displayName": "HTML to CSS autocompletion",
"description": "Provides completion suggestions for classes and ids from markup documents to stylesheets.",
"version": "1.1.2",
"publisher": "solnurkarim",
"engines": {
"vscode": "^1.25.0"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/solnurkarim/HTML-to-CSS-autocompletion/issues",
"email": "solnurkarim@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/solnurkarim/HTML-to-CSS-autocompletion.git"
},
"icon": "assets/logo.png",
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:css",
"onLanguage:scss",
"onLanguage:less",
"onLanguage:sass",
"onLanguage:styl"
],
"contributes": {
"configuration": {
"title": "HTML to CSS autocompletion extension configuration",
"properties": {
"html-to-css-autocompletion.triggerCharacters": {
"type": "boolean",
"default": false,
"description": "Set true to populate Intellisense with selectors only when '#' or '.' characters are typed. Default: false"
},
"html-to-css-autocompletion.autocompletionFilesScope": {
"type": "string",
"enum": [
"multi-root",
"workspace",
"linked-files"
],
"default": "multi-root",
"description": "Defines scopes for extension to work with.\r\nmulti-root: all selectors found within all root folders will be visible to all stylesheets.\r\nworkspace: all selectors found within particular workspace folder/project will be visible to stylesheets within that workspace folder.\r\nlinked files: selectors will be provided only for linked stylesheets.\r\nDefault: \"multi-root\""
},
"html-to-css-autocompletion.getSelectorsFromFileTypes": {
"type": "array",
"default": [
"html",
"php"
],
"description": "Defines file types to be searched for classes/ids.\r\nDefaults: [\"html\", \"php\"]"
},
"html-to-css-autocompletion.folderNamesToBeIncluded": {
"type": "array",
"default": [
""
],
"description": "Defines only specific folder names to be searched. Default: [\"\"]"
},
"html-to-css-autocompletion.folderNamesToBeExcluded": {
"type": "array",
"default": [
"node_modules"
],
"description": "Defines folder names to be excluded from being searched. Default: [\"node_modules\"]"
},
"html-to-css-autocompletion.includePattern": {
"type": "string",
"default": "",
"description": "Set custom glob pattern to get classes/ids from matched files. E.g.: **/{folderName1,folderName2,...}/*.{fileType1,fileType2,...}"
},
"html-to-css-autocompletion.excludePattern": {
"type": "string",
"default": "",
"description": "Set custom glob pattern to exclude search on pattern matches. E.g.: **/{folderName1,folderName2,...}/**"
}
}
},
"commands": [
{
"command": "htmlToCssConfig",
"title": "Extension Configuration",
"category": "HTML to CSS autocompletion"
}
]
},
"main": "./extension",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.11.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {}
}