This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "covid-public-api",
"version": "1.0.0",
"description": "This is a Node.js app that runs on Github Actions to build the public data API repository for the [COVID Tracking Project](https://covidtracking.com).",
"main": "index.js",
"scripts": {
"build": "node index.js",
"webhook-check": "node scripts/check-webhook.js",
"webhook-trigger": "node scripts/trigger-webhook.js",
"test": "jest",
"test:lint": "eslint ./src",
"test:coverage": "jest --coverage --maxWorkers 1",
"test:post-build": "jest --config=\"{}\" --testPathPattern=./post-build/v1 --testMatch=**/*.js"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@slack/webhook": "^6.0.0",
"bl": "^2.2.1",
"chalk": "^4.0.0",
"command-line-args": "^5.1.1",
"contentful": "^8.0.1",
"csv-parser": "^2.3.2",
"csv-writer": "^1.6.0",
"fs-extra": "^9.0.0",
"graphql": "^15.0.0",
"graphql-compose": "^7.15.0",
"luxon": "^1.25.0",
"markdown-table": "^2.0.0",
"nodegit": "^0.27.0",
"object-hash": "^2.0.3",
"ora": "^4.0.4",
"set-tz": "^0.2.0",
"yargs-parser": "^18.1.2"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"fetch-mock-jest": "^1.3.0",
"jest": "^26.0.1",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^10.0.0",
"prettier": "^2.0.5"
}
}