-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.01 KB
/
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
43
44
45
46
47
48
49
50
{
"name": "covid-cli",
"version": "1.0.0",
"description": "Check COVID-19 stats from terminal",
"license": "MIT",
"author": {
"name": "Umed Jadhav",
"email": "[email protected]"
},
"main": "index.js",
"engines": {
"node": ">=12.x"
},
"bin": {
"covid19": "index.js",
"covid19-cli": "index.js"
},
"files": [
"index.js",
"utils/*"
],
"dependencies": {
"await-to-js": "^2.1.1",
"axios": "^0.19.2",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.19",
"boxen": "^4.2.0",
"chalk": "^4.0.0",
"cli-check-node": "^1.3.0",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-table3": "^0.6.0",
"cli-welcome": "^1.4.0",
"comma-number": "^2.0.1",
"lodash.orderby": "^4.6.0",
"log-symbols": "^4.0.0",
"meow": "^6.1.0",
"moment": "^2.24.0",
"ora": "^4.0.4",
"update-check": "^1.5.4",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"prettier": "^2.0.5"
},
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\"",
"test": "node test.js"
}
}