-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 766 Bytes
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
{
"name": "tomatimer",
"main": "./lib/tomatimer",
"version": "1.2.3",
"description": "A loose and straightforward pomodoro timer.",
"keywords": [
"pomodoro",
"tomato timer",
"tomato",
"timer"
],
"activationCommands": {
"atom-workspace": "tomatimer:start"
},
"standard": {
"globals": [
"atom",
"Audio",
"describe",
"beforeEach",
"afterEach",
"it",
"expect",
"window"
]
},
"repository": "https://github.com/Yu1989/atom-tomatimer",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"lodash": "^4.12.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}