-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.13 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vscode-zc-buildout",
"description": "A vscode extension and language server for zc.buildout",
"author": "Jérome Perrin",
"license": "SEE LICENSE IN LICENSE.txt",
"version": "0.13.0",
"repository": {
"type": "git",
"url": "https://github.com/perrinjerome/vscode-zc-buildout"
},
"publisher": "perrinjerome",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.67.0"
},
"activationEvents": [
"onLanguage:zc-buildout"
],
"main": "./client/out/extension",
"contributes": {
"commands": [
{
"command": "command/startProfiling",
"title": "zc.buildout: Start Profiling"
},
{
"command": "command/stopProfiling",
"title": "zc.buildout: Stop Profiling"
}
],
"languages": [
{
"id": "zc-buildout",
"extensions": [
".in",
".cfg"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"scopeName": "source.zc-buildout",
"path": "./syntaxes/zc.buildout.tmGrammar.json"
},
{
"language": "zc-buildout",
"scopeName": "source.zc-buildout-jinja",
"path": "./syntaxes/jinja+zc.buildout.tmGrammar.json"
}
],
"configuration": {
"type": "object",
"title": "vscode-zc-buildout extension configuration",
"properties": {
"zc-buildout.python.executable": {
"scope": "application",
"type": "string",
"default": "python3",
"description": "Path of python installation to use language server. This needs to be python >= 3.8"
},
"zc-buildout.language.server.arguments": {
"scope": "application",
"type": "array",
"items": {
"type": "string"
},
"examples": [
[
"--logfile",
"buildoutls.log"
]
],
"description": "Command line arguments when lauching language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"build": "vsce",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ..",
"test": "bash -c 'CODE_TESTS_PATH=\"$(pwd)/client/out/test\" CODE_TESTS_WORKSPACE=\"$(pwd)/profiles/\" node \"$(pwd)/client/out/test/runTest\"'",
"test:syntax": "vscode-tmgrammar-snap 'test/syntax/*.cfg*'",
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/mocha": "^8.0.0",
"@types/node": "^12.12.0",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"mocha": "^9.1.3",
"prettier": "latest",
"sinon": "^9.0.2",
"tslint": "^5.16.0",
"typescript": "^4.5.5",
"@vscode/vsce": "latest",
"vscode-tmgrammar-test": "^0.1.1"
}
}