-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "geojson-polyline",
"version": "1.0.3",
"description": "Convert GeoJSON coordinates to and from encoded polylines. Supports all major GeoJSON types.",
"main": "geojson-polyline.js",
"bin": {
"geojson-polyline": "./bin/cli.js"
},
"directories": {
"lib": "dist",
"test": "test"
},
"scripts": {
"prepublish": "npm test && npm run dist",
"dist": "browserify geojson-polyline.js -s GeoJSONPolyline -o dist/geojson-polyline.js && uglifyjs dist/geojson-polyline.js -o dist/geojson-polyline.min.js",
"test": "standard geojson-polyline.js && istanbul cover _mocha"
},
"keywords": [
"polyline",
"encoded",
"geojson"
],
"author": "Benjamin Barber",
"license": "ISC",
"devDependencies": {
"browserify": "^16.2.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"standard": "^12.0.1",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"@mapbox/polyline": "^1.0.0",
"JSONStream": "^1.2.1",
"event-stream": "3.3.4",
"from2-string": "^1.1.0",
"object-assign": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barberboy/geojson-polyline.git"
},
"bugs": {
"url": "https://github.com/barberboy/geojson-polyline/issues"
},
"homepage": "https://github.com/barberboy/geojson-polyline#readme"
}