-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.43 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
50
51
52
53
{
"name": "vt-optimizer",
"version": "0.0.2",
"description": "A vector tile size inspector and optimizer",
"main": "src/index.js",
"bin": {
"vt-optimizer": "./index.js"
},
"scripts": {
"lint": "eslint --fix --cache --ignore-path .gitignore src",
"test": "run-s lint test-unit",
"test-cov": "nyc --require=flow-remove-types/register --reporter=text-summary --reporter=lcov --cache npm run test-unit",
"test-unit": "tap --reporter classic --no-coverage test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibesora/vt-optimizer.git"
},
"keywords": [
"vector",
"tiles",
"mapbox"
],
"author": "ibesora",
"license": "MIT",
"bugs": {
"url": "https://github.com/ibesora/vt-optimizer/issues"
},
"homepage": "https://github.com/ibesora/vt-optimizer#readme",
"dependencies": {
"@mapbox/vector-tile": "^1.3.1",
"axios": ">=0.21.1",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"console.table": "^0.10.0",
"geojson-vt": "^3.2.1",
"inquirer": "^6.2.0",
"listr": "^0.14.2",
"pbf": "^3.1.0",
"rxjs": "^6.3.3",
"simplify-geojson": "^1.0.4",
"sqlite3": "^4.1.0",
"vt-pbf": "git+https://github.com/ibesora/vt-pbf.git"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"chalk": "^2.4.1",
"coveralls": "^3.0.2",
"eslint": "^8.8.0",
"npm-run-all": "^4.1.5",
"tap": "^14.6.1"
}
}