forked from mapbox/geojson-tidy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 829 Bytes
/
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
{
"name": "geojson-tidy",
"version": "1.0.1",
"description": "tidy up a geojson input by filtering out noisy point clusters",
"main": "geojson-tidy.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "[email protected]:mapbox/geojson-tidy.git"
},
"scripts": {
"test": "tape test/test.js",
"build": "mkdir -p dist && browserify -s tidy geojson-tidy.js > dist/geojson-tidy.js && uglifyjs dist/geojson-tidy.js -c -m > dist/geojson-tidy.min.js"
},
"keywords": [
"geojson",
"tidy",
"noise",
"filter"
],
"author": "Arun Ganesh",
"license": "MIT",
"dependencies": {
"fs": "0.0.2",
"haversine": "^1.0.0",
"minimist": "^1.1.1"
},
"devDependencies": {
"browserify": "7.0.2",
"uglify-js": "2.4.16",
"tape": "^4.0.0"
}
}