-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 1.87 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "packer",
"displayName": "Packer",
"description": "Packer configuration language support",
"version": "0.3.0",
"icon": "icon.png",
"categories": [
"Programming Languages"
],
"keywords": [
"packer",
"hashicorp",
"hcl"
],
"publisher": "4ops",
"author": {
"name": "Anton Kulikov"
},
"repository": {
"type": "git",
"url": "https://github.com/4ops/vscode-language-packer.git"
},
"bugs": {
"url": "https://github.com/4ops/vscode-language-packer/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.42.0"
},
"contributes": {
"languages": [
{
"id": "packer",
"aliases": [
"Packer"
],
"extensions": [
".pkr.hcl"
],
"configuration": "./language-configuration.json"
},
{
"id": "packervars",
"aliases": [
"Packer Variables",
"Packer Vars",
"PackerVars"
],
"extensions": [
".pkrvars.hcl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "packer",
"scopeName": "source.packer",
"path": "./grammars/packer.json"
},
{
"language": "packervars",
"scopeName": "source.packervars",
"path": "./grammars/packervars.json"
}
]
},
"scripts": {
"ci-build": "vsce package",
"build": "vsce package",
"compile-packer": "yq eval grammars/packer.yaml --tojson > grammars/packer.json",
"compile-packervars": "yq eval grammars/packervars.yaml --tojson > grammars/packervars.json",
"compile": "npm run compile-packer && npm run compile-packervars",
"pretest": "npm run compile -s",
"prebuild": "npm test -s",
"preversion": "git add -A .",
"postversion": "npm run push -s",
"prepush": "git push",
"push": "git push --tags",
"postpush": "echo vsce publish",
"test": "echo No tests are implemented",
"version": "npm run build -s"
},
"devDependencies": {
"vsce": "^1.99.0"
},
"dependencies": {}
}