-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "cvirus",
"version": "1.2.2",
"description": "Track corona virus cases in your terminal",
"main": "./lib/index.js",
"scripts": {
"start": "nodemon src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "npm i -g && cvirus",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"keywords": [
"cli",
"corona virus",
"typescript",
"nodejs",
"package",
"cvirus",
"coronavirus-cli",
"cvirus-cli"
],
"repository": {
"type": "git",
"url": "https://github.com/saqibnoorani/cvirus.git"
},
"author": "Najmus Saqib",
"license": "MIT",
"bin": {
"cvirus": "./lib/index.js"
},
"dependencies": {
"await-to-js": "^2.1.1",
"axios": "^0.19.2",
"chalk": "^2.4.1",
"clear": "^0.1.0",
"cli-table": "^0.3.1",
"commander": "^2.19.0",
"figlet": "^1.3.0"
},
"devDependencies": {
"@types/node": "^10.12.10",
"nodemon": "^2.0.2",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}