-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@mapbox/mapbox-geostats",
"version": "1.1.1",
"description": "Generate statistics about geographic data.",
"main": "index.js",
"bin": {
"mapbox-geostats": "bin/mapbox-geostats",
"mapbox-geostats-validate": "bin/mapbox-geostats-validate"
},
"scripts": {
"lint": "eslint lib test bin/**",
"lint-fix": "eslint --fix lib test bin/**",
"test": "npm run lint && tap test/test.js",
"coverage": "tap test/test.js --cov --coverage-report=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/mapbox-geostats.git"
},
"author": "Mapbox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/mapbox-geostats/issues"
},
"homepage": "https://github.com/mapbox/mapbox-geostats#readme",
"dependencies": {
"@mapbox/mapbox-file-sniff": "~1.0.1",
"@mapbox/mbtiles": "^0.10.0",
"@mapbox/tilelive": "~5.12.2",
"@mapbox/tiletype": "^0.3.0",
"@mapbox/vector-tile": "^1.2.1",
"d3-queue": "^3.0.7",
"jsonschema": "^1.1.1",
"lodash": "^4.13.1",
"mapnik": "^4.3.1",
"meow": "^3.7.0",
"pbf": "^2.0.1"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-plugin-node": "^8.0.1",
"tap": "^12.5.1"
}
}