-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "c19",
"version": "1.0.17",
"description": "Get COVID-19 data with one command",
"homepage": "https://github.com/xinyangyuan/c19#readme",
"repository": {
"type": "git",
"url": "https://github.com/xinyangyuan/c19"
},
"bin": {
"c19": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "ncc build src/index.ts -w -o dist",
"prerelease": "rimraf ./dist/",
"release": "ncc build src/index.ts -o ./dist/ --minify --no-cache --no-source-map-register"
},
"keywords": [
"covid-19",
"covid",
"COVID-19",
"COVID",
"SARS-CoV-2",
"cli"
],
"author": "Xinyang Yuan",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.2.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.20",
"@types/table": "^6.0.0",
"@zeit/ncc": "^0.22.3",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"commander": "^6.2.1",
"figlet": "^1.5.0",
"fuzzy": "^0.1.3",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.3.0",
"jest": "^27.0.3",
"rimraf": "^3.0.2",
"table": "^6.0.7",
"ts-jest": "^27.0.2",
"typescript": "^3.9.7"
}
}