-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.97 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
{
"name": "notification-tester",
"displayName": "Notification Tester",
"description": "Trigger any VS Code notification.",
"icon": "icon.png",
"version": "2.5.1",
"publisher": "svipas",
"main": "./dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/svipas/vscode-notification-tester.git"
},
"bugs": {
"url": "https://github.com/svipas/vscode-notification-tester/issues"
},
"engines": {
"vscode": "^1.30.0"
},
"extensionKind": [
"ui"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:show.information.message",
"onCommand:show.warning.message",
"onCommand:show.error.message",
"onCommand:show.all.messages",
"onCommand:start.progress.badge",
"onCommand:stop.progress.badge"
],
"contributes": {
"commands": [
{
"command": "show.information.message",
"title": "Notification Tester: Show Information Message"
},
{
"command": "show.warning.message",
"title": "Notification Tester: Show Warning Message"
},
{
"command": "show.error.message",
"title": "Notification Tester: Show Error Message"
},
{
"command": "show.all.messages",
"title": "Notification Tester: Show All Messages"
},
{
"command": "start.progress.badge",
"title": "Notification Tester: Start Progress Badge"
},
{
"command": "stop.progress.badge",
"title": "Notification Tester: Stop Progress Badge"
}
]
},
"scripts": {
"build": "webpack --mode production",
"pretest": "tsc -p ./ && yarn build",
"test": "node ./out/test/runTest.js",
"vscode:publish": "vsce publish --yarn",
"vscode:prepublish": "yarn build"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.18",
"@types/vscode": "^1.30.0",
"glob": "^7.1.6",
"mocha": "^8.0.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6",
"vscode-test": "^1.4.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"keywords": [
"test",
"notification",
"center"
]
}