forked from sagarkarira/coronavirus-tracker-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 666 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 666 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
{
"name": "coronavirus-tracker-cli",
"version": "0.2.0",
"description": "track conronavirus cases from cli",
"main": "./lib/corona.js",
"bin": {
"corona": "./bin/index.js"
},
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "12.x"
},
"author": "sagarkarira1992@gmail.com",
"license": "ISC",
"dependencies": {
"ansi-to-html": "^0.6.14",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"cli-table3": "^0.5.1",
"emoji-flags": "^1.2.0",
"express": "^4.17.1",
"humanize-number": "0.0.2",
"lodash": "^4.17.15",
"moment": "^2.24.0"
}
}