-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 903 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 903 Bytes
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
{
"name": "covidapi",
"version": "1.0.0",
"description": "A COVID-19 stats REST API retrieving data directly from WHO.",
"main": "./out/index.js",
"scripts": {
"start": "node ./out/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/electromeow/covidAPI.git"
},
"keywords": [
"covid",
"stats",
"who",
"pandemic",
"rest",
"api"
],
"author": "electromeow",
"license": "MIT",
"bugs": {
"url": "https://github.com/electromeow/covidAPI/issues"
},
"homepage": "https://github.com/electromeow/covidAPI#readme",
"devDependencies": {
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"dependencies": {
"csv-parser": "^3.0.0",
"express": "^4.17.1"
}
}