-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.77 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
{
"name": "pomodoro-timer",
"displayName": "Pomodoro Timer",
"description": "Pomodoro Technique support",
"version": "1.0.8",
"publisher": "brandonsoto",
"homepage": "https://github.com/brandonsoto/pomodoro-timer/blob/master/README.md",
"badges": [
{
"url": "https://vsmarketplacebadge.apphb.com/version/brandonsoto.pomodoro-timer.svg",
"href": "https://vsmarketplacebadge.apphb.com/version/brandonsoto.popomodoro-timer.svg",
"description": "version"
},
{
"url": "https://travis-ci.org/brandonsoto/pomodoro-timer.svg?branch=master",
"href": "https://travis-ci.org/brandonsoto/pomodoro-timer",
"description": "build status"
},
{
"url": "https://api.codeclimate.com/v1/badges/ba73e4050c4a2636c527/maintainability",
"href": "https://api.codeclimate.com/v1/badges/ba73e4050c4a2636c527/maintainability",
"description": "maintainability status"
}
],
"repository": {
"type": "git",
"url": "https://github.com/brandonsoto/pomodoro-timer"
},
"bugs": {
"url": "https://github.com/brandonsoto/pomodoro-timer/issues"
},
"keywords": [
"pomodoro",
"timer",
"productivity"
],
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"main": "./src/extension",
"license": "MIT",
"contributes": {
"configuration": {
"type": "object",
"title": "Pomodoro",
"properties": {
"pomodoro.interval": {
"type": "int",
"default": 25,
"description": "The number of minutes in a Pomodoro"
}
}
},
"commands": [
{
"command": "extension.startTimer",
"title": "Start Timer",
"category": "Pomodoro"
},
{
"command": "extension.pauseTimer",
"title": "Pause Timer",
"category": "Pomodoro"
},
{
"command": "extension.resetTimer",
"title": "Reset Timer",
"category": "Pomodoro"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}