-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "@mapbox/mbtiles",
"version": "0.12.2",
"description": "Utilities and tilelive integration for the MBTiles format.",
"url": "http://github.com/mapbox/node-mbtiles",
"author": "Mapbox (https://www.mapbox.com)",
"keywords": [
"map",
"mbtiles"
],
"licenses": [
{
"type": "BSD"
}
],
"main": "./lib/mbtiles",
"repository": {
"type": "git",
"url": "http://github.com/mapbox/node-mbtiles.git"
},
"contributors": [
"Tom MacWright <tmcw>",
"Will White <willwhite>",
"Dane Springmeyer <springmeyer>",
"Young Hahn <yhahn>",
"Konstantin Käfer <kkaefer>",
"Andrew Pendleton <apendleton>",
"Kai Dalgleish <kaibot3000>"
],
"dependencies": {
"@mapbox/sphericalmercator": "~1.1.0",
"@mapbox/tiletype": "0.3.x",
"d3-queue": "~3.0.7",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"eslint": "~5.16.0",
"eslint-config-unstyled": "^1.1.0",
"sinon": "^9.0.2",
"tape": "~4.10.1"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "eslint lib && tape test/*.js"
}
}