-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
57 lines (57 loc) · 1.44 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
51
52
53
54
55
56
57
{
"name": "covid19trackercli",
"version": "4.1.3",
"description": "Track global COVID-19 cases from command line interface.",
"main": "dist/api.js",
"scripts": {
"start": "node dist/api.js",
"cli": "node dist/cli.js",
"build": "tsc",
"dev": "nodemon dist/api.js",
"watch": "tsc -w"
},
"keywords": [
"coronavirus-cli",
"corona-cli",
"covid-cli",
"covid-tracker",
"covid-cli-tracker",
"coronavirus",
"corona",
"covid-19",
"covid19",
"covid",
"virus",
"bat-soup",
"Waren Gonzaga",
"Wareneutron"
],
"author": "Waren Gonzaga",
"license": "GPL-3.0",
"devDependencies": {
"@types/asciichart": "^1.5.6",
"@types/blessed": "^0.1.19",
"@types/express": "^4.17.13",
"@types/minimist": "^1.2.2",
"@types/morgan": "^1.9.3",
"@types/node": "18.0.3",
"nodemon": "^2.0.19",
"ts-node": "^10.8.2"
},
"bin": {
"covid": "./dist/cli.js"
},
"dependencies": {
"asciichart": "^1.5.25",
"axios": "^0.27.2",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"colors": "^1.4.0",
"express": "^4.18.1",
"minimist": "^1.2.6",
"morgan": "^1.10.0",
"typescript": "^4.7.4",
"world-countries": "^4.0.0"
},
"packageManager": "[email protected]"
}