-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "hecatejs",
"version": "12.0.1",
"main": "cli.js",
"repository": "[email protected]:mapcommons/HecateJS",
"author": "ingalls <[email protected]>",
"license": "MIT",
"bin": {
"hecatecli": "cli.js"
},
"devDependencies": {
"@mapbox/eslint-config-geocoding": "^2.0.0",
"codecov": "^3.0.4",
"documentation": "^13.0.0",
"eslint": "^7.1.0",
"eslint-plugin-node": "11.1.0",
"nyc": "^15.1.0",
"tape": "^5.0.1"
},
"dependencies": {
"@mapbox/geojsonhint": "^3.0.0",
"@turf/turf": "^5.1.6",
"aws-sdk": "^2.224.1",
"better-sqlite3": "^7.0.1",
"d3-queue": "^3.0.7",
"geojson-rewind": "^0.3.1",
"geojson-validation": "^1.0.1",
"minimist": "^1.2.0",
"n-readlines": "^1.0.0 ",
"nock": "^12.0.3",
"parallel-transform": "^1.2.0",
"prompt": "^1.0.0",
"request": "^2.88.0",
"requestretry": "^4.0.0",
"split": "^1.0.1"
},
"engines": {
"node": ">=10"
},
"scripts": {
"doc": "documentation build --github --format md --output docs/api.md cli.js lib/**",
"test": "yarn lint && tape test/*.test.js",
"coverage": "TESTING=true nyc tape 'test/**/*.js' && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "documentation lint cli.js lib/** && eslint cli.js lib/*.js util/*.js test/*.js"
}
}