-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.28 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
89
90
91
92
{
"name": "vscode-uon",
"displayName": "UON",
"description": "UON Language Support",
"author": "Vitor Vaz Afonso",
"icon": "images/logo.png",
"version": "0.0.3",
"publisher": "vitorva",
"bugs": "https://github.com/vitorva/vscode-uon/issues",
"repository": {
"type": "git",
"url": "https://github.com/vitorva/vscode-uon"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages",
"Linters",
"Snippets"
],
"activationEvents": [
"onLanguage:uon"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "uon",
"aliases": [
"uon",
"UON"
],
"extensions": [
".uon",
".UON"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "uon",
"scopeName": "source.uon",
"path": "./syntaxes/uon.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": " npm run syntax && node ./out/test/runTest.js",
"antlr4ts": "cd src/generated && antlr4ts -visitor ../grammar/UON.g4",
"build": "npm run antlr4ts",
"deploy": "vsce publish",
"syntax": "vscode-tmgrammar-test src/test/syntaxes/json-map-test.uon && vscode-tmgrammar-test src/test/syntaxes/json-seq-test.uon && vscode-tmgrammar-test src/test/syntaxes/schema-test.uon "
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"antlr4ts-cli": "^0.5.0-alpha.4",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"minimist": ">=1.2.6",
"mocha": "^9.2.1",
"typescript": "^4.5.5",
"vsce": "^2.9.2",
"vscode-tmgrammar-test": "^0.1.1"
},
"dependencies": {
"antlr4-c3": "^2.2.1",
"antlr4ts": "^0.5.0-alpha.4",
"chai": "^4.3.6",
"deep-equal-in-any-order": "^2.0.0",
"vscode-languageserver": "^7.0.0"
},
"__metadata": {
"id": "a1368451-1f0d-4034-8346-bd55eec3ccd0",
"publisherDisplayName": "test2Publish",
"publisherId": "0fa1a9a8-1379-4954-9b46-c483c0879a26",
"isPreReleaseVersion": false
}
}