This repository has been archived by the owner on Jul 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
77 lines (77 loc) · 2.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
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
{
"name": "sass-indented",
"displayName": "Sass",
"description": "Indented Sass syntax highlighting, autocomplete & snippets",
"version": "1.5.1",
"icon": "images/sass-logo-seal.png",
"publisher": "robinbentley",
"repository": {
"type": "git",
"url": "https://github.com/robinbentley/vscode-sass-indented"
},
"bugs": "https://github.com/robinbentley/vscode-sass-indented/issues",
"engines": {
"vscode": "^1.30.0"
},
"activationEvents": [
"onLanguage:sass"
],
"main": "./out/extension",
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Sass (Indented)",
"properties": {
"sass.disableAutoIndent": {
"type": "boolean",
"default": false,
"description": "Stop the extension from automatically indenting when pressing Enter"
}
}
},
"languages": [
{
"id": "sass",
"aliases": [
"Sass",
"sass-indented"
],
"extensions": [
".sass",
".sass.erb"
],
"configuration": "./sass.configuration.json"
}
],
"grammars": [
{
"language": "sass",
"scopeName": "source.sass",
"path": "./syntaxes/sass.json"
}
],
"snippets": [
{
"language": "sass",
"path": "./snippets/sass.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'"
},
"devDependencies": {
"@types/node": "^12.0.8",
"tslint": "^5.17.0",
"typescript": "^3.2.2",
"vscode": "^1.1.34"
}
}