-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "supertiler",
"version": "0.0.4",
"description": "GeoJSON -> MBTiles with Supercluster",
"module": "index.js",
"scripts": {
"pretest": "eslint index.js main.js supertiler.js test/test.js",
"test": "tap --node-arg=-r --node-arg=esm test",
"cov": "tap --node-arg=-r --node-arg=esm test --cov",
"prepublishOnly": "npm run test"
},
"bin": {
"supertiler": "supertiler.js"
},
"repository": "https://github.com/ChrisLoer/supertiler",
"author": "Chris Loer <[email protected]>",
"license": "BSD",
"keywords": [
"clustering",
"geospatial",
"mbtiles"
],
"dependencies": {
"esm": "^3.1.0",
"node-gzip": "^1.1.2",
"sqlite": "^3.0.3",
"sqlite3": "^4.1.0",
"supercluster": "^6.0.1",
"vt-pbf": "^3.1.1",
"yargs": "^13.2.1"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-mourner": "^3.0.0",
"tap": "^12.1.1"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"camelcase": 0
}
}
}