forked from OSSPhilippines/covid19-tracker-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "covid19trackercli",
"version": "4.1.1",
"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.4",
"@types/blessed": "^0.1.17",
"@types/express": "^4.17.11",
"@types/minimist": "^1.2.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.35",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1"
},
"bin": {
"covid": "./dist/cli.js"
},
"dependencies": {
"asciichart": "^1.5.25",
"axios": "^0.21.2",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.21",
"colors": "^1.4.0",
"express": "^4.17.1",
"minimist": "^1.2.5",
"morgan": "^1.10.0",
"typescript": "^4.2.3",
"world-countries": "^4.0.0"
}
}