-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "frontline-sass-snippets",
"displayName": "Frontline Sass Snippets",
"version": "1.0.1",
"description": "Frontline Sass snippets for Atom and VS Code",
"keywords": [
"snippets",
"provider",
"frontline-sass",
"sass",
"mixins",
"functions"
],
"publisher": "Threespot",
"repository": "https://github.com/threespot/frontline-sass-snippets",
"author": "Mat Brady <[email protected]> (http://matbrady.github.io/)",
"icon": "images/icon.png",
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "scss",
"path": "./vs-snippets/main-functions.json"
},
{
"language": "scss",
"path": "./vs-snippets/main-mixins.json"
},
{
"language": "scss",
"path": "./vs-snippets/main-variables.json"
},
{
"language": "scss",
"path": "./vs-snippets/selector-mixins.json"
}
]
},
"license": "MIT",
"engines": {
"atom": ">=1.15.0 <2.0.0",
"vscode": "^1.0.0"
},
"devDependencies": {
"convert-atom-snippets-to-vscode": "^1.0.2",
"vsce": "^1.47.0"
},
"dependencies": {}
}