-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "mbtiles-extractor",
"version": "0.1.1",
"description": "Takes tiles out of an mbtiles file and puts them somewhere in a directory structure.",
"main": "src/index.js",
"bin": {
"mbtiles-extractor": "bin/mbtiles-extractor.js"
},
"keywords": [
"mbtiles",
"tiles",
"raster-tiles",
"vector-tiles",
"AWS"
],
"scripts": {
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"author": "Rowan Winsemius",
"license": "MIT",
"dependencies": {
"agentkeepalive": "^4.1.2",
"aws-sdk": "^2.652.0",
"cli-progress": "^3.6.1",
"colors": "^1.4.0",
"esm": "^3.2.25",
"load-json-file": "^6.2.0",
"p-queue": "^6.3.0",
"p-throttle": "^3.1.0",
"prompt": "^1.0.0",
"sqlite3": "^4.1.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-mourner": "^3.0.0"
}
}