-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·83 lines (83 loc) · 2.19 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
{
"name": "vscode-zk-autocomplete",
"displayName": "ZK",
"publisher": "zkoss",
"description": "ZUL editing helper",
"version": "0.1.2",
"preview": true,
"license": "MIT",
"engines": {
"vscode": "^1.40.0",
"node": "^12.18.3"
},
"icon": "images/zklogo.png",
"categories": [
"Programming Languages",
"Formatters"
],
"repository": {
"type": "git",
"url": "https://github.com/zkoss/ZK-vscode-plugin"
},
"bugs": {
"url": "https://github.com/zkoss/ZK-vscode-plugin/issues"
},
"keywords": [
"zk",
"zul",
"completion"
],
"activationEvents": [
"onLanguage:zk"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "zk",
"extensions": [
".zul"
],
"configuration": "./src/language-configuration.json"
}
],
"grammars": [
{
"language": "zk",
"scopeName": "source.zk",
"path": "./syntaxes/zk.tmLanguage.json"
}
]
},
"scripts": {
"prepublish": "tsc -p ./src",
"compile": "tsc -p ./src",
"lint": "eslint ./src/**/*.ts",
"watch": "tsc -w -p ./src",
"test": "ts-node --project ./src/tsconfig.json node_modules/jasmine/bin/jasmine --config=jasmine.json",
"package": "vsce package",
"publish": "vsce publish",
"release": "standard-version"
},
"dependencies": {
"fs": "0.0.1-security",
"get-uri": "3.0.2",
"opn": "^6.0.0",
"sax": "1.2.4",
"vscode-cache": "^0.3.0"
},
"devDependencies": {
"@types/jasmine": "^3.6.3",
"@types/node": "^14.14.27",
"@types/vscode": "^1.40.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"jasmine": "^3.6.4",
"ovsx": "^0.1.0-next.a9154dc",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"vsce": "^2.15.0"
}
}