-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 918 Bytes
/
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
{
"name": "cli-clock",
"version": "0.3.0",
"main": "cli-clock.js",
"scripts": {
"start": "node cli-clock.js",
"prepublish": "typings i && tsc",
"build": "typings i && tsc"
},
"keywords": [
"cli",
"clock",
"terminal"
],
"bin": {
"cli-clock": "./cli-clock.js"
},
"author": "alex mejias",
"license": "MIT",
"dependencies": {
"cli-clear": "^1.0.4",
"cli-color": "^1.1.0",
"commander": "^2.9.0",
"moment": "^2.14.1",
"node-fetch": "^1.7.1",
"source-map-support": "^0.4.2"
},
"devDependencies": {
"typings": "^1.3.2",
"typescript": "^2.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amejias101/cli-clock.git"
},
"bugs": {
"url": "https://github.com/amejias101/cli-clock/issues"
},
"homepage": "https://github.com/amejias101/cli-clock#readme",
"description": "",
"preferGlobal": true
}