-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 4.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
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "vscode-extension-api-tester",
"displayName": "InterSystems Extension API Tester",
"version": "0.0.3-SNAPSHOT",
"preview": true,
"publisher": "intersystems-community",
"description": "Facilitates testing of APIs published by VS Code extensions from the InterSystems Developer Community.",
"repository": {
"type": "git",
"url": "https://github.com/intersystems-community/vscode-extension-api-tester"
},
"license": "MIT",
"keywords": [
"intersystems",
"objectscript",
"multi-root ready"
],
"engines": {
"vscode": "^1.63.0",
"node": "^10.2.0"
},
"icon": "images/logo.png",
"categories": [
"Other"
],
"contributors": [
{
"name": "John Murray",
"email": "[email protected]"
}
],
"private": true,
"scripts": {
"vscode:prepublish": "npm run compile",
"package": "vsce package",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./tsconfig.json",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint src/**",
"lint-fix": "eslint --fix src/**"
},
"dependencies": {
"@types/vscode": "^1.63.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^8.10.60",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"glob": "^7.1.6",
"mocha": "9.2.2",
"prettier": "^2.0.5",
"ts-loader": "^9.4.2",
"typescript": "^3.8.3",
"@vscode/test-electron": "^2.1.5"
},
"main": "./out/extension",
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "intersystems-community.vscode-extension-api-tester.testLogin",
"category": "Extension API Tester",
"title": "Test Login [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.testScopedLogin",
"category": "Extension API Tester",
"title": "Test Scoped Login [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.testQuietLogin",
"category": "Extension API Tester",
"title": "Test Quiet Login [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.servermanager.pickServer",
"category": "Extension API Tester",
"title": "Server Selection [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.servermanager.pickServerFlushingCachedCredentials",
"category": "Extension API Tester",
"title": "Server Selection (flush cached credentials) [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.servermanager.pickServerDetailed",
"category": "Extension API Tester",
"title": "Server Selection with Details [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.servermanager.onDidChangePassword",
"category": "Extension API Tester",
"title": "Watch for Password Changes [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.servermanager.offDidChangePassword",
"category": "Extension API Tester",
"title": "Stop Watching for Password Changes [Server Manager]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.vscode-objectscript.serverOfCurrentDocument",
"category": "Extension API Tester",
"title": "Server of Current Document [ObjectScript]"
},
{
"command": "intersystems-community.vscode-extension-api-tester.vscode-objectscript.serverDocumentUriOfCurrentDocument",
"category": "Extension API Tester",
"title": "Uri of Server Version of Current Document [ObjectScript]"
}
]
}
}