-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
{
"name": "openaq-fetch",
"version": "0.1.0",
"type": "module",
"description": "A tool to collect data for OpenAQ platform.",
"repository": "https://github.com/openaq/openaq-fetch",
"scripts": {
"test": "mocha test/lib/ --require babel-register",
"start": "node index.js",
"docker": "docker-compose --project-name openaq run --rm fetch"
},
"author": "Joe Flasher",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.933.0",
"@aws-sdk/client-sns": "^3.933.0",
"@aws-sdk/client-sqs": "^3.933.0",
"async": "^3.2.6",
"aws-sdk": "^2.1692.0",
"bottleneck": "^2.19.5",
"byline": "^5.0.0",
"cheerio": "^1.1.2",
"coordinate-parser": "^1.0.7",
"csv-parse": "^6.1.0",
"ftp": "^0.3.10",
"got": "^14.6.4",
"jsonschema": "^1.5.0",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"moment-timezone": "^0.6.0",
"node-html-parser": "^7.0.1",
"proj4": "^2.20.2",
"request": "^2.88.2",
"rss-parser": "^3.13.0",
"s3-upload-stream": "^1.0.7",
"scramjet": "^4.37.0",
"ssl-root-cas": "^1.3.1",
"tough-cookie": "^6.0.0",
"wellknown": "^0.5.0",
"winston": "^3.18.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@types/node": "^24.10.1",
"aws-cdk-lib": "^2.225.0",
"chai": "^6.2.1",
"depcheck": "^1.4.7",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}