forked from microsoft/vscode-languageserver-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "test-extension",
"displayName": "test-extension",
"publisher": "ms-vscode",
"private": true,
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {},
"scripts": {
"clean": "rimraf lib",
"compile": "tsc -b ./tsconfig.json",
"watch": "tsc -b ./tsconfig.watch.json -w",
"lint": "eslint --ext ts src",
"test": "node ../build/bin/symlink-tests.js && node lib/runTests.js",
"all": "npm run clean && npm run compile && npm run lint && npm run test",
"symlink:publish": "node ../build/bin/symlink-client-tests-publish.js",
"compile:publish": "tsc -b ./tsconfig.publish.json",
"test:publish": "node lib/runTests.js",
"all:publish": "git clean -xfd . && npm install && npm run symlink:publish && npm run compile:publish && npm run test:publish"
},
"dependencies": {
"minimatch": "^9.0.3",
"vscode-languageserver": "10.0.0-next.10",
"vscode-uri": "3.0.8"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/sinon": "^10.0.20",
"@types/uuid": "^9.0.6",
"@types/vscode": "1.91.0",
"@vscode/test-electron": "^2.3.9",
"find-process": "^1.4.7",
"glob": "^10.3.10",
"sinon": "^17.0.0",
"uuid": "^9.0.1"
},
"enabledApiProposals": []
}