-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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": "@koopjs/output-vector-tiles",
"version": "2.2.0",
"description": "Koop output-plugin for generating Vector-tiles from GeoJSON",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf dist",
"compile": "buble -i src -o dist",
"package": "npm run clean && npm run compile",
"start": "node server.js",
"test": "standard && tape test/*.js | tap-spec"
},
"author": "Daniel Fenton <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/koopjs/koop-output-vector-tiles.git"
},
"bugs": {
"url": "https://github.com/koopjs/koop-output-vector-tiles/issues"
},
"homepage": "https://github.com/koopjs/koop-output-vector-tiles#readme",
"dependencies": {
"@koopjs/logger": "^2.0.4",
"config": "^3.1.0",
"esri-extent": "^1.1.3",
"geojson-vt": "^3.2.1",
"lodash": "^4.17.11",
"proj4": "^2.5.0",
"vt-pbf": "^3.1.1",
"winnow": "^1.16.8"
},
"devDependencies": {
"buble": "^0.19.7",
"proxyquire": "^2.1.0",
"standard": "^10.0.3",
"tap-spec": "^5.0.0",
"tape": "^4.10.2"
}
}