-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.4 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
{
"name": "ion-extension",
"description": "Ion Extension to support the Ion data format on VSCode",
"author": "The Ion Team",
"license": "Apache 2.0",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/amzn/ion-vscode-plugin"
},
"publisher": "TheIonTeam",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:ion"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "ion",
"extensions": [
".ion"
],
"aliases": [
"Ion"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ion",
"scopeName": "source.ion",
"path": "./syntaxes/ion.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "vscode-tmgrammar-test -s source.ion -g syntaxes/ion.tmLanguage.json -t \"client/test/highlight/**/*.ion\"",
"test:ui": "node ./client/out/test/runTest.js",
"test:extest": "extest setup-and-run client/out/ui-test/*.js -o .vscode/settings.json"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.12",
"tslint": "^6.1.3",
"vscode-extension-tester": "^5.5.2",
"vscode-tmgrammar-test": "^0.0.10"
}
}