-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.3 KB
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
78
79
80
81
82
83
{
"name": "vscode-angular-pug",
"displayName": "vscode-angular-pug",
"description": "Angular syntax highlighting for pug template files",
"version": "0.3.3",
"publisher": "ghaschel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ghaschel/vscode-angular-pug.git"
},
"bugs": {
"url": "https://github.com/ghaschel/vscode-angular-pug/issues"
},
"scripts": {
"watch": "npx gulp watch",
"compile-json": "npx gulp compile-json",
"publish": "standard-version && git push --follow-tags origin master && vsce publish",
"postinstall": "node scripts/postinstall.js",
"test": "npx vscode-tmgrammar-test -g syntaxes/angular-pug.tmLanguage.json -g test/externalGrammars/source.css.tmLanguage.json -g test/externalGrammars/source.js.tmLanguage.json -g test/externalGrammars/text.html.basic.tmLanguage.json -g test/externalGrammars/source.css.scss.tmLanguage.json -g test/externalGrammars/source.css.less.tmLanguage.json -g test/externalGrammars/source.sassdoc.tmLanguage.json -g test/externalGrammars/source.stylus.tmLanguage.json -g test/externalGrammars/source.coffee.tmLanguage.json -g test/externalGrammars/source.js.regexp.tmLanguage.plist test/*.pug",
"update-snapshots": "npx vscode-tmgrammar-snap -s text.pug -g syntaxes/angular-pug.tmLanguage.json -g test/externalGrammars/source.css.tmLanguage.json -g test/externalGrammars/source.js.tmLanguage.json -g test/externalGrammars/text.html.basic.tmLanguage.json -g test/externalGrammars/source.css.scss.tmLanguage.json -g test/externalGrammars/source.css.less.tmLanguage.json -g test/externalGrammars/source.sassdoc.tmLanguage.json -g test/externalGrammars/source.stylus.tmLanguage.json -g test/externalGrammars/source.coffee.tmLanguage.json -g test/externalGrammars/source.js.regexp.tmLanguage.plist --updateSnapshot test/*.pug",
"prepare": "husky install"
},
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "jade",
"aliases": [
"Pug (Angular template)"
],
"extensions": [
".component.pug"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jade",
"scopeName": "text.pug",
"path": "./syntaxes/angular-pug.tmLanguage.json"
}
]
},
"author": "Guilherme Haschel",
"homepage": "https://github.com/ghaschel/vscode-angular-pug#readme",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"icon": "assets/angular-pug.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"
},
"__metadata": {
"id": "9bd7fabe-8030-4cc2-84c0-61ffea1b86d3",
"publisherId": "11dc737a-af20-4f74-a460-baf39922c066",
"publisherDisplayName": "Guilherme Haschel"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}