-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"name": "vt-pbf",
"version": "3.1.3",
"description": "Serialize mapbox vector tiles to binary protobufs in javascript.",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"pretest": "eslint index.js test/*.js",
"test": "tape test/*.js"
},
"author": "Anand Thakker <vestibule@anandthakker.net> (http://anandthakker.net/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/vt-pbf.git"
},
"dependencies": {
"@mapbox/point-geometry": "0.1.0",
"@mapbox/vector-tile": "^1.3.1",
"pbf": "^3.2.1"
},
"devDependencies": {
"@mapbox/geojson-fixtures": "^1.0.0",
"@mapbox/mvt-fixtures": "^3.6.0",
"@mapbox/vtvalidate": "0.2.3",
"benchmark": "^2.1.4",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"geojson-equality": "^0.2.0",
"geojson-vt": "^3.2.1",
"standard": "^16.0.3",
"tape": "^5.2.2"
}
}