forked from openaq/openaq-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.67 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
54
55
56
57
58
59
60
{
"name": "openaq-fetch",
"version": "0.1.0",
"description": "A tool to collect data for OpenAQ platform.",
"repository": "https://github.com/openaq/openaq-fetch",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && 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": {
"JSONStream": "^1.3.4",
"adm-zip": "^0.4.11",
"async": "^2.6.1",
"aws-sdk": "^2.305.0",
"babel-preset-node8": "^1.2.0",
"babel-register": "^6.26.0",
"bottleneck": "^2.19.5",
"byline": "^5.0.0",
"cheerio": "^1.0.0-rc.2",
"coordinate-parser": "^1.0.2",
"csv-parse": "^3.0.0",
"ftp": "^0.3.10",
"iconv": "^2.3.0",
"jsonschema": "^1.2.0",
"knex": "^0.15.2",
"knex-postgis": "^0.2.2",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"pg": "^7.4.3",
"proj4": "^2.3.14",
"proj4js-defs": "0.0.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"require-dir": "^1.0.0",
"s3-upload-stream": "^1.0.7",
"scramjet": "^4.19.0",
"ssl-root-cas": "^1.3.1",
"transliteration": "^1.6.6",
"tz-lookup": "^6.1.8",
"winston": "^2.4.4",
"winston-papertrail": "^1.0.2",
"yargs": "^12.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0",
"shell-escape": "^0.2.0"
}
}