-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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-bbox",
"version": "0.0.1",
"description": "Calculates extent/bbox for a given valid geojson object.",
"main": "geojson-bbox.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify geojson-bbox.js --debug --standalone bbox | exorcist dist/geojson-bbox.js.map > dist/geojson-bbox.js",
"build-min": "browserify geojson-bbox.js --standalone bbox | uglifyjs -c -m > dist/geojson-bbox.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/geosquare/geojson-bbox"
},
"keywords": [
"geojson",
"extent",
"bbox",
"bounds",
"maps",
"geo",
"geospatial"
],
"author": "Gagan Bansal <gaganbansal123@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geosquare/geojson-bbox/issues"
},
"homepage": "https://github.com/geosquare/geojson-bbox",
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^1.10.0",
"exorcist": "^2.0.0",
"mocha": "^10.1.0",
"uglify-js": "^2.4.16"
}
}