-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 972 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
37
38
39
40
{
"name": "@mapbox/geojson-tidy",
"version": "2.0.0",
"description": "tidy up a geojson input by filtering out noisy point clusters",
"main": "geojson-tidy.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://[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": {
"haversine": "^1.0.0",
"minimist": "^1.1.1"
},
"devDependencies": {
"browserify": "13.1.1",
"cz-conventional-changelog": "^1.2.0",
"tape": "^4.0.0",
"uglify-js": "2.7.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}