-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
165 lines (165 loc) · 3.91 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "csshat-language-less",
"title": "Less",
"version": "2.0.12",
"description": "Less language",
"main": "main",
"scope": "source.css.less",
"codeLanguage": true,
"engines": {
"csshat": "~2.0.0",
"avocode": "*"
},
"homepage": "https://github.com/csshat/language-less",
"repository": {
"type": "git",
"url": "https://github.com/csshat/language-less"
},
"bugs": {
"url": "https://github.com/csshat/language-less/issues"
},
"author": "Petr Brzek <petrbrzek@abdoc.net> (https://github.com/petrbrzek)",
"contributors": [
"Marek Hrabe <marekhrabe@abdoc.net> (https://github.com/marekhrabe)",
"Tomas Hanacek <tomashanacek@abdoc.net> (https://github.com/tomashanacek)"
],
"license": "MIT",
"dependencies": {
"octopus-helpers": "^1.5.0"
},
"settings": {
"inheritFontStyles": {
"description": "Group common styles for selected layers.",
"type": "boolean",
"default": true
},
"showComments": {
"description": "Show a brief description of selected layers.",
"type": "boolean",
"default": true
},
"showAbsolutePositions": {
"description": "Show absolute X and Y coordinates for all layers.",
"type": "boolean",
"default": false
},
"useColorName": {
"description": "Show color name values of common colors rather than hex codes.",
"type": "boolean",
"default": true
},
"boxSizing": {
"type": "select",
"options": [
"border-box",
"content-box"
],
"default": "border-box"
},
"unit": {
"type": "select",
"options": [
"px",
"em",
"rem"
],
"default": "px"
},
"lineHeightUnit": {
"type": "select",
"options": [
"Use selected unit",
"Unitless (number multiplied by the element's font size)",
"px",
"em",
"rem"
],
"default": "Use selected unit"
},
"emValue": {
"description": "1 em = x px — Ammount of pixels that correspond to one em. Em value is **not** relative to parent element.",
"type": "text",
"default": 16,
"validate": "setNumberValue",
"showFor": [
"unit",
"lineHeightUnit"
],
"showWhen": "em"
},
"remValue": {
"description": "1 rem = x px — Ammount of pixels that correspond to one rem",
"type": "text",
"default": 16,
"validate": "setNumberValue",
"showFor": [
"unit",
"lineHeightUnit"
],
"showWhen": "rem"
},
"enableLessHat": {
"description": "Use Less Hat mixin library. [Read more](http://lesshat.madebysource.com/)",
"type": "boolean",
"default": true
},
"useInterpolationSyntax": {
"description": "Escapes all mixin values. Enable this option if you have problems with your LESS compiler. Only applicable when Less Hat is toggled on",
"type": "boolean",
"default": false,
"showFor": [
"enableLessHat"
],
"showWhen": true
},
"selector": {
"description": "Wrap code in a css selector.",
"type": "boolean",
"default": false
},
"selectorType": {
"type": "select",
"options": [
"id",
"class",
"element"
],
"default": "class"
},
"selectorTextStyle": {
"type": "select",
"options": [
"dash-case",
"snake_case",
"camelCase"
],
"default": "dash-case"
},
"colorType": {
"type": "select",
"options": [
"hex",
"rgb",
"hsl"
],
"default": "hex"
},
"quoteType": {
"type": "select",
"options": [
"'",
"\""
],
"default": "\""
}
},
"bundledDependencies": [
"octopus-helpers"
],
"devDependencies": {
"coffee-script": "^1.10.0"
},
"scripts": {
"prepublish": "coffee -o ./ ./"
}
}