-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "color-describe",
"main": "./lib/color-describe",
"version": "0.0.0",
"description": "Shows a text description when highlighting a valid color (CSS format).",
"keywords": [],
"repository": "https://github.com/atom/color-describe",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"lodash.debounce": "4.0.8",
"tinycolor2": "1.4.1"
},
"configSchema": {
"fileTypes": {
"type": "array",
"default": [
"source.css",
"source.less",
"source.styl",
"source.stylus",
"source.sass",
"source.scss",
"source.css.less",
"source.css.styl",
"source.css.stylus",
"source.css.sass",
"source.css.scss"
],
"title": "File Types",
"description": "These file types will show the color description when highlighting a color."
},
"timeout": {
"type": "integer",
"default": 400,
"minimum": 50,
"title": "Delay",
"description": "Number of milliseconds to wait before describing color."
}
}
}