-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
45
46
{
"name": "boundary-tiles",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"gulp": "gulp",
"tessera": "tessera --config mbtiles --port 4040 --module @mapbox/mbtiles",
"geojson2ndjson": "geojson2ndjson"
},
"author": "Stephen Davies <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"can-ndjson-stream": "^1.0.0",
"geojson2ndjson": "^0.5.0",
"gulp": "^4.0.0",
"json5": "^2.1.3",
"jsonfile": "^5.0.0",
"mkdirp": "^0.5.1",
"ndjson": "^1.5.0",
"serve": "^13.0.4",
"shelljs": "^0.8.3",
"shelljs.exec": "^1.1.8",
"tippecanoe": "^0.3.0"
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier --write"
]
},
"contributors": [
"Stephen Davies <[email protected]>",
"Steve Bennett <[email protected]> (http://stevebennett.me)",
"Nick Forbes-Smith <[email protected]>"
]
}