-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 759 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 759 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
{
"name": "to-zero",
"version": "1.0.2",
"description": "Command line tool to countdown to zero and natively notify",
"main": "index.js",
"bin": "./bin/run.js",
"scripts": {
"test": "mocha",
"preversion": "npm test"
},
"repository": {
"type": "git",
"url": "https://www.github.com/gswalden/to-zero"
},
"keywords": [
"countdown",
"timer",
"cli"
],
"author": "Greg Walden <hi@gsw.nyc>",
"license": "ISC",
"preferGlobal": true,
"dependencies": {
"daemon": "^1.1.0",
"human-date": "^1.3.2",
"minimist": "^1.2.0",
"ms": "^0.7.1",
"node-notifier": "^4.3.1",
"progress": "^1.1.8",
"timer.js": "^1.0.4"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4"
}
}