-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "vscode-action-test-extension",
"displayName": "vscode-action-test-extension",
"description": "",
"version": "0.0.5",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.helloWorld"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
}
]
},
"repository": "https://github.com/JCofman/vscodeaction",
"publisher": "vscode-action-test-extension",
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^17.0.21",
"@types/vscode": "^1.65.0",
"glob": "^7.2.0",
"mocha": "^6.2.2",
"typescript": "^4.6.2",
"tslint": "^6.1.3",
"vscode-test": "^1.6.1"
}
}