forked from COVID19Tracking/covid-public-api-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.89 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
{
"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",
"build:volunteers": "node index.js -s volunteers --volunteers",
"webhook": "node 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",
"test:compare": "jest --config=\"{}\" --testPathPattern=./post-build/compare --testMatch=**/*.js"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/bigquery": "^5.0.0",
"@slack/web-api": "^5.8.1",
"@slack/webhook": "^5.0.3",
"chalk": "^4.0.0",
"cli-spinners": "^2.3.0",
"command-line-args": "^5.1.1",
"csv-parser": "^2.3.2",
"csv-writer": "^1.6.0",
"fast-xml-parser": "^3.17.1",
"fs-extra": "^9.0.0",
"google-spreadsheet": "^3.0.11",
"graphql": "^15.0.0",
"graphql-compose": "^7.15.0",
"luxon": "^1.24.1",
"markdown-table": "^2.0.0",
"node-fetch": "^2.6.0",
"nodegit": "^0.26.5",
"oas-normalize": "^2.1.0",
"object-hash": "^2.0.3",
"ora": "^4.0.4",
"set-tz": "^0.2.0"
},
"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"
}
}