This repository was archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.33 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.33 KB
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
58
59
60
61
62
{
"name": "coronavirus-report",
"version": "1.3.0",
"description": "Coronavirus statisitcs CLI",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "bin/index.js",
"scripts": {
"build": "rimraf bin/* && tsc -p .",
"prettier": "prettier --write 'lib/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/awesome-cli/coronavirus-report.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"virus",
"coronavirus",
"cli",
"report",
"statistics"
],
"bugs": {
"url": "https://github.com/awesome-cli/coronavirus-report/issues"
},
"homepage": "https://github.com/awesome-cli/coronavirus-report#readme",
"bin": {
"coronavirus-report": "bin/index.js",
"coronavirus": "bin/index.js",
"cr": "bin/index.js"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^5.1.0",
"figlet": "^1.4.0",
"node-fetch": "^2.6.0",
"ora": "^4.0.4",
"two-digit": "^1.0.6"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/node": "^14.0.14",
"@types/node-fetch": "^2.5.7",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"lib/**/*.ts": [
"npm run prettier"
]
}
}