-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
56 lines (56 loc) · 1.32 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": "coronavirus-tracker-cli",
"version": "0.9.2",
"description": "track conronavirus cases from cli",
"repository": {
"type": "git",
"url": "git+https://github.com/sagarkarira/coronavirus-tracker-cli.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/sagarkarira/coronavirus-tracker-cli/issues"
},
"homepage": "https://github.com/sagarkarira/coronavirus-tracker-cli#readme",
"main": "./lib/corona.js",
"bin": {
"corona": "bin/index.js"
},
"scripts": {
"dev": "nodemon --inspect app.js",
"lint": "eslint .",
"start": "node app.js",
"test": "npm run lint"
},
"files": [
"{bin,lib}/*.js",
"lib/country/*.js",
"app.js"
],
"engines": {
"node": ">=12.x"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"asciichart": "^1.5.11",
"axios": "^0.19.2",
"chalk": "^3.0.0",
"cli-table3": "^0.5.1",
"country-code-lookup": "0.0.17",
"emoji-flags": "^1.2.0",
"express": "^4.17.1",
"helmet": "^3.21.3",
"humanize-number": "0.0.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.0",
"strip-ansi": "^6.0.0",
"yargonaut": "^1.1.4",
"yargs": "15.3.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.2"
}
}