-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.18 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
48
49
50
{
"name": "@mapbox/geojson-extent",
"version": "1.1.0",
"description": "compute the bounding box of geojson features",
"main": "index.js",
"scripts": {
"test": "eslint index.js && tap test/*.js",
"build": "browserify -s geojsonExtent index.js | uglifyjs -c > geojson-extent.js"
},
"bin": {
"geojson-extent": "./bin/geojson-extent"
},
"repository": {
"type": "git",
"url": "git@github.com:mapbox/geojson-extent.git"
},
"keywords": [
"geojson",
"extent",
"browser",
"geo",
"boundingbox",
"bounds"
],
"author": "Tom MacWright",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/geojson-extent/issues"
},
"homepage": "https://github.com/mapbox/geojson-extent",
"dependencies": {
"@mapbox/extent": "0.4.0",
"@mapbox/geojson-coords": "0.0.2",
"neotraverse": "^0.6.15",
"rw": "~0.1.4"
},
"devDependencies": {
"browserify": "~5.9.3",
"cz-conventional-changelog": "1.2.0",
"eslint": "^7.9.0",
"eslint-config-unstyled": "^1.1.0",
"tap": "~0.4.8",
"uglifyjs": "~2.4.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}