-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 1.86 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
{
"name": "terraform-doc-snippets",
"displayName": "Terraform doc snippets",
"description": "Terraform code snippets (>8000) pulled from examples in the terraform registry provider docs. resources and data sources. All official and partner providers are scraped for examples.",
"version": "0.6.0",
"icon": "assets/terraform_logo.png",
"publisher": "run-at-scale",
"license": "MIT",
"engines": {
"vscode": "^1.19.0"
},
"author": {
"name": "Brandon Bjelland",
"email": "[email protected]",
"url": "https://github.com/run-at-scale"
},
"categories": [
"Snippets"
],
"keywords": [
"Terraform",
"devops",
"infrastructure as code",
"automation",
"orchestration"
],
"repository": {
"type": "git",
"url": "https://github.com/run-at-scale/vscode-terraform-doc-snippets"
},
"contributes": {
"snippets": [
{
"language": "terraform",
"path": "./snippets/terraform.json"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install",
"build:snippets": "ts-node ./src/main.ts",
"publish:vsce": "vsce publish",
"release": "standard-version"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"@types/tmp": "0.0.33",
"@types/underscore": "^1.8.8",
"eslint": "^4.19.1",
"standard-version": "^9.1.1",
"ts-node": "^8.10.2",
"tslint": "^5.9.1",
"typescript": "^2.9.2",
"vsce": "^1.59.0",
"vscode": "^1.1.33"
},
"dependencies": {
"@octokit/rest": "^15.2.7",
"async": "^2.6.0",
"gfm-code-blocks": "^1.0.0",
"node-fetch": "^2.6.1",
"nodegit": "^0.26.1",
"tmp": "0.0.33",
"underscore": "^1.9.0"
}
}