-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (78 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (78 loc) · 1.79 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
{
"name": "swml-validator",
"displayName": "SWML-Validator",
"description": "A Visual studio code extension used to validate SignalWire Markup Language",
"version": "1.0.19",
"publisher": "Awoyinkaolajide",
"repository": {
"url": "https://github.com/olajhidey/swml-validator"
},
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:yaml"
],
"main": "./extension.js",
"contributes": {
"snippets": [
{
"language": "json",
"path": "./snippets/snippets.json"
},
{
"language": "yaml",
"path": "./snippets/snippets.json"
}
],
"yamlValidation": [
{
"fileMatch": "/*.yaml",
"url": "./schema/SWMLObject.json"
},
{
"fileMatch": "/*.yml",
"url": "./schema/SWMLObject.json"
}
],
"jsonValidation": [
{
"fileMatch": "/*.json",
"url": "./schema/SWMLObject.json"
}
],
"commands": [
{
"command": "swml-validator.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"@types/vscode": "^1.82.0",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.2.2",
"vscode": "^1.1.37"
},
"dependencies": {
"js-yaml": "^4.1.0",
"vscode-json-languageservice": "^5.3.7",
"vscode-languageclient": "^7.0.0",
"vscode-yaml": "0.13.0",
"yaml-language-server": "^1.14.0"
},
"icon": "SWLogo.png"
}