forked from ritwickdey/vscode-live-sass-compiler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
145 lines (145 loc) · 5.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "live-sass",
"displayName": "Live Sass Compiler",
"description": "Compile Sass or Scss to CSS at realtime with live browser reload.",
"version": "0.4.0",
"publisher": "ritwickdey",
"author": {
"name": "Ritwick Dey",
"email": "[email protected]",
"url": "http://twitter.com/Dey_Ritwick"
},
"engines": {
"vscode": "^1.0.0"
},
"keywords": [
"SASS",
"SCSS",
"Compiler",
"Transpiler",
"SASS Compiler"
],
"categories": [
"Other",
"Extension Packs"
],
"preview": true,
"galleryBanner": {
"color": "#41205f",
"theme": "dark"
},
"activationEvents": [
"workspaceContains:**/*.s[ac]ss",
"onLanguage:scss",
"onLanguage:sass"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "liveSass.command.watchMySass",
"title": "Watch Sass",
"category": "Live Sass"
},
{
"command": "liveSass.command.donotWatchMySass",
"title": "Stop Watching",
"category": "Live Sass"
},
{
"command": "liveSass.command.oneTimeCompileSass",
"title": "Compile Sass - Without Watch Mode",
"category": "Live Sass"
}
],
"configuration": {
"title": "Live Sass Compile Config",
"properties": {
"liveSassCompile.settings.format": {
"type": "string",
"default": "expanded",
"enum": [
"expanded",
"compact",
"compressed",
"nested"
],
"description": "Set your exported CSS Style. \nDefault is expanded."
},
"liveSassCompile.settings.savePath": {
"type": [
"string"
],
"default": "null",
"pattern": "null|/|/[^\\/]",
"description": "Customize file location of exported CSS.\n Set absulate Path From Workspace Root.\n '/' stands for your workspace root. \n Example: /subfolder1/subfolder2. All CSS file will be saved at 'subfolder2'. \n(NOTE: if folder does not exist, folder will be created as well). \nIf value is null, CSS will be generated at same directory of every SASS/SCSS. (default)."
},
"liveSassCompile.settings.extensionName": {
"type": [
"string"
],
"default": ".css",
"enum": [
".css",
".min.css"
],
"description": "Customize extension name.\nDefault is .css"
},
"liveSassCompile.settings.excludeList": {
"type": "array",
"default": [
"**/node_modules/**",
".vscode/**"
],
"description": "All Sass/Scss files inside the folders will be excluded. \n\nExamples: \n'**/node_modules/**',\n'.vscode/**', \n'.history/**' \n\nGlob Patterns are accepted."
},
"liveSassCompile.settings.includeItems": {
"type": [
"array",
"null"
],
"default": null,
"description": "This setting is useful when you deals with only few of sass files. Only mentioned Sass files will be included. \nNOTE: No need to include partial sass files."
},
"liveSassCompile.settings.generateMap": {
"type": [
"boolean"
],
"default": true,
"description": "Choose whether this script automatically comiles map files for the CSS generated from the compiler."
}
}
}
},
"license": "MIT",
"icon": "images/icon2.png",
"bugs": {
"url": "https://github.com/ritwickdey/vscode-live-sass-compiler/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ritwickdey/vscode-live-sass-compiler.git"
},
"homepage": "https://ritwickdey.github.io/vscode-live-sass-compiler/",
"extensionDependencies": [
"ritwickdey.LiveServer"
],
"scripts": {
"vscode:prepublish": "npm install && tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"glob": "^7.1.2",
"sasslib": "file:lib\\sasslib"
},
"devDependencies": {
"typescript": "^2.4.1",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}