-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
49 lines (49 loc) · 1.11 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
47
48
49
{
"name": "@mapbox/mbview",
"version": "5.1.0",
"description": "Watch mbtiles in your localhost",
"bin": {
"mbview": "./cli.js"
},
"main": "server.js",
"scripts": {
"lint": "eslint *.js test/ && ejslint views/",
"pretest": "npm run lint",
"test": "tape test/*.test.js",
"start": "node cli.js"
},
"keywords": [
"localhost",
"mapbox",
"mbtiles"
],
"author": "Rodolfo Wilhelmy <[email protected]> (http://wilhel.me)",
"license": "MIT",
"devDependencies": {
"@mapbox/eslint-config-mapbox": "^3.0.0",
"ejs-lint": "^1.1.0",
"eslint": "^7.24.0",
"eslint-plugin-node": "^11.1.0",
"supertest": "^6.1.3",
"tape": "^5.2.2"
},
"dependencies": {
"@mapbox/mbtiles": "^0.12.1",
"d3-queue": "^3.0.7",
"ejs": "^3.1.6",
"express": "^4.17.1",
"minimist": "^1.2.5",
"open": "^8.0.5"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/mbview.git"
},
"bugs": {
"url": "https://github.com/mapbox/mbview/issues"
},
"homepage": "https://github.com/mapbox/mbview#readme",
"engines": {
"node": ">=12"
}
}