-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.12 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
{
"name": "vscode-angular-scss",
"displayName": "vscode-angular-scss",
"description": "Angular syntax highlighting for scss style files",
"version": "0.0.3",
"publisher": "ghaschel",
"license": "MIT",
"scripts": {
"watch": "npx gulp watch",
"compile-json": "npx gulp compile-json",
"publish": "standard-version && git push --follow-tags && vsce publish",
"postinstall": "node scripts/postinstall.js",
"test": "npx vscode-tmgrammar-test -g syntaxes/angular-scss.tmLanguage.json -g test/externalGrammars/source.css.tmLanguage.json -g test/externalGrammars/source.sassdoc.tmLanguage.json test/*.scss",
"update-snapshots": "npx vscode-tmgrammar-snap -s source.css.scss -g syntaxes/angular-scss.tmLanguage.json -g test/externalGrammars/source.css.tmLanguage.json -g test/externalGrammars/source.sassdoc.tmLanguage.json --updateSnapshot test/*.scss",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghaschel/vscode-angular-scss.git"
},
"bugs": {
"url": "https://github.com/ghaschel/vscode-angular-scss/issues"
},
"engines": {
"vscode": "^1.70.0"
},
"author": "Guilherme Haschel",
"homepage": "https://github.com/ghaschel/vscode-angular-scss#readme",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"language": "scss",
"scopeName": "source.css.scss",
"path": "./syntaxes/angular-scss.tmLanguage.json"
}
]
},
"icon": "assets/angular-scss.png",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"cz-conventional-changelog": "^3.3.0",
"gulp": "^4.0.2",
"gulp-json5-to-json": "^0.2.1",
"gulp-merge-json": "^2.1.2",
"gulp-prettier": "^4.0.0",
"husky": "^7.0.0",
"json-beautify": "^1.1.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"standard-version": "^9.5.0",
"vscode-tmgrammar-test": "^0.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}