-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "mbtiles-offline",
"version": "4.0.1",
"description": "MBTiles binding for NodeJS 4+ using Callbacks and/or Promises.",
"main": "index.js",
"types": "index.d.js",
"files": [
"index.js",
"index.d.ts",
"utils",
"schema"
],
"scripts": {
"types": "tsc index.d.ts types.ts --lib es6",
"lint": "standard",
"pretest": "npm run types && npm run lint",
"test": "tap test.js utils/utils.test.js --coverage",
"posttest": "tsc types.ts --lib es6 && node types.js",
"docs": "documentation readme index.js --shallow --section=API"
},
"author": "Denis Carriere <@DenisCarriere>",
"license": "MIT",
"keywords": [
"mbtiles",
"sqlite3",
"offline"
],
"dependencies": {
"@mapbox/tiletype": "*",
"@turf/bbox": "*",
"bbox-dateline": "*",
"debug": "*",
"global-mercator": "*",
"lodash.omit": "*",
"sqlite3-offline": "*",
"universalify": "*"
},
"devDependencies": {
"@types/geojson": "*",
"@types/node": "*",
"coveralls": "*",
"documentation": "*",
"fs-extra": "*",
"load-json-file": "*",
"standard": "*",
"tap": "*",
"tape": "*",
"typescript": "*",
"write-json-file": "*"
}
}