forked from saidabou/carmen
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@mapbox/carmen",
"description": "Mapnik vector-tile-based geocoder with support for swappable data sources.",
"version": "34.1.4",
"url": "http://github.com/mapbox/carmen",
"author": "Mapbox (https://www.mapbox.com)",
"license": "BSD-2-Clause",
"dependencies": {
"@mapbox/carmen-core": "0.5.0",
"@mapbox/geojsonhint": "^2.0.1",
"@mapbox/locking": "^3.0.0",
"@mapbox/mbtiles": "^0.12.1",
"@mapbox/sphericalmercator": "^1.1.0",
"@mapbox/tile-cover": "^3.0.2",
"@mapbox/tilebelt": "1.0.x",
"@mapbox/tilelive": "^6.0.0",
"@mapbox/vtquery": "0.5.1",
"@turf/bbox": "^6.0.1",
"@turf/bbox-clip": "^6.0.3",
"@turf/bearing": "^6.0.1",
"@turf/buffer": "^5.1.5",
"@turf/center": "^6.0.1",
"@turf/destination": "^6.0.1",
"@turf/distance": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@turf/length": "^6.0.2",
"@turf/nearest-point-on-line": "^6.0.2",
"@turf/point-on-feature": "^5.1.5",
"cheap-ruler": "^2.5.1",
"d3-queue": "3.0.x",
"err-code": "^1.1.2",
"fs-extra": "^7.0.0",
"geojson-rewind": "^0.3.1",
"handlebars": "^4.1.2",
"handlebars-helpers": "^0.10.0",
"leven": "^3.1.0",
"minimist": "1.2.0",
"model-un": "0.0.3",
"murmurhash-native": "^3.5.0",
"split": "^1.0.1",
"yarn": "^1.7.0"
},
"devDependencies": {
"@mapbox/eslint-config-geocoding": "^2.0.0",
"benchmark": "^2.1.4",
"bytes": "^3.0.0",
"documentation": "^13.1.1",
"eslint": "^5.3.0",
"eslint-plugin-node": "^8.0.0",
"mapnik": "^4.5.5",
"nyc": "^15.1.0",
"retire": "^2.0.1",
"tape": "^5.2.0"
},
"bin": {
"carmen": "./bin/carmen.js",
"carmen-analyze": "./bin/carmen-analyze.js",
"carmen-index": "./bin/carmen-index.js"
},
"main": "./index.js",
"scripts": {
"lint": "eslint index.js lib test bin",
"test": "yarn run lint && (retire -n || echo 'WARNING: retire found insecure packages') && TESTING=true tape './test/**/*.js' && yarn run bench",
"coverage": "TESTING=true tape test/bin.test.js && nyc tape 'test/**/*.js' && nyc report --reporter=text-lcov > coverage.lcov",
"bench": "./test/run_all_benchmarks.sh",
"build-docs": " $(yarn bin)/documentation build --config docs/documentation.yml --access public --github --format md --output docs/api.md index.js lib/**"
},
"engines": {
"node": "14.x"
},
"repository": {
"type": "git",
"url": "git@github.com:mapbox/carmen.git"
}
}