-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 842 Bytes
/
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
{
"name": "css-color-name",
"main": "./lib/main",
"version": "0.4.0",
"description": "Autocomplete of css predefined color names",
"keywords": [
"css",
"color",
"autocomplete",
"named colors"
],
"repository": "https://github.com/adarrra/css-color-name",
"license": "MIT",
"author": {
"name": "Adara Belaya"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"activationHooks": [
"language-css:grammar-used",
"language-less:grammar-used",
"language-sass:grammar-used",
"language-scss:grammar-used",
"Stylus:grammar-used"
],
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-es2015": "^1.1.0",
"eslint-plugin-import": "^2.2.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
}
}