-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (44 loc) · 1.03 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
{
"name": "terraformregistrylookup",
"displayName": "terraformregistrylookup",
"description": "Lookups up resources from Terraform registry",
"version": "0.0.5",
"publisher": "jono",
"repository": "https://github.com/johnw230873/vscode-plugin-Terrafor-Registry-Lookup",
"icon": "./icon.ico",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:terraform"
],
"main": "./extension.js",
"contributes": {
"languages": [{
"id": "terraform",
"extensions": [".tf"]
}],
"hoverProvider": [{
"language": "terraform",
"scheme": "file"
}]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.83.0",
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.2.2",
"@vscode/test-electron": "^2.3.4"
}
}