-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.28 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
{
"name": "geojson-extract-geometries",
"version": "0.0.2",
"description": "Extract geometries from geojson for given basic geometry type.",
"main": "geojson-extract-geometries.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify geojson-extract-geometries.js --debug --standalone GeoJSONExtractGeometries | exorcist dist/geojson-extract-geometries.js.map > dist/geojson-extract-geometries.js",
"build-min": "browserify geojson-extract-geometries.js --standalone GeoJSONExtractGeometries | uglifyjs -c -m > dist/geojson-extract-geometries.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/geosquare/geojson-extract-geometries"
},
"keywords": [
"geojson",
"geometry",
"extract",
"feature-collection"
],
"author": "Gagan Bansal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geosquare/geojson-extract-geometries/issues"
},
"homepage": "https://github.com/geosquare/geojson-extract-geometries",
"devDependencies": {
"browserify": "^8.1.1",
"chai": "^1.10.0",
"exorcist": "^0.1.6",
"mocha": "^2.1.0",
"uglify-js": "^2.4.16"
},
"dependencies": {
"multigeojson": "0.0.1"
}
}