-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 826 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
{
"name": "uptime-cli",
"version": "1.1.3",
"description": "Monitor your websites uptime and downtime in the terminal with the Uptime Robot API.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"up-cli": "node index.js",
"test": "ava"
},
"author": "n053",
"license": "MIT",
"dependencies": {
"chalk": "^2.2.0",
"cli-table": "^0.3.1",
"figlet": "^1.2.0",
"jsonfile": "^4.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"bin": {
"up-cli": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/christ0ph3r/uptime-cli"
},
"keywords": [
"uptime",
"cli",
"commandline",
"downtime",
"uptimerobot",
"api",
"terminal",
"monitor"
],
"devDependencies": {
"ava": "^0.23.0"
}
}