-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.52 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
{
"name": "vscode-task-notifier",
"publisher": "joelrobichaud",
"version": "0.1.1",
"author": {
"name": "joelrobichaud"
},
"contributors": [
"sebRomeo"
],
"displayName": "Task Notifier",
"description": "Get notified when your tasks are done.",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"keywords": [
"notifications",
"tasks"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Task Notifier",
"properties": {
"taskNotifier.playSound": {
"type": "boolean",
"description": "Control whether a sound is played or not when getting notified.",
"default": true,
"scope": "resource"
},
"taskNotifier.vscodeNotification": {
"type": "string",
"description": "Choose between system notifications (default), vsCode message in the status bar or vsCode notification",
"default": "system",
"scope": "resource",
"enum": [
"system",
"statusBar",
"vsCodeNotification"
],
"enumDescriptions": [
"(default) System notifications",
"Message in vsCode status bar",
"Vscode notification (requires user to close it manually)"
]
}
}
}
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^8.10.25",
"@types/node-notifier": "0.0.28",
"tslint": "^5.8.0",
"typescript": "^3.1.4",
"vscode": "^1.1.25"
},
"dependencies": {
"node-notifier": "^5.3.0"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/joelrobichaud/vscode-task-notifier/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/joelrobichaud/vscode-task-notifier.git"
},
"bugs": {
"url": "https://github.com/joelrobichaud/vscode-task-notifier/issues"
}
}