-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 983 Bytes
/
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
{
"name": "tile-stat-stream",
"version": "1.1.0",
"description": "a stream that gathers statistics from vector tile data",
"main": "index.js",
"scripts": {
"test": "eslint --no-eslintrc -c .eslintrc . && tape ./test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/tile-stat-stream.git"
},
"keywords": [
"tile",
"vector",
"tile",
"mapbox",
"statistics",
"stream",
"transform"
],
"author": "Tom MacWright",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/tile-stat-stream/issues"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/mapbox/tile-stat-stream#readme",
"devDependencies": {
"eslint": "^0.24.0",
"mbtiles": "^0.8.0",
"tape": "^4.0.0",
"tilelive": "^5.8.2"
},
"dependencies": {
"es6-set": "^0.1.1",
"pbf": "^1.3.2",
"tiletype": "^0.2.1",
"vector-tile": "^1.1.3"
}
}