-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "max-inscribed-circle",
"version": "2.0.0",
"description": "A library to calculate the optimal point inside a polygon",
"main": "max-inscribed-circle.js",
"files": [
"max-inscribed-circle.js",
"errors.js",
"utils/geojson-utils.js",
"dist/max-inscribed-circle.es5.min.js",
"dist/max-inscribed-circle.es5.min.js.map"
],
"dependencies": {
"@turf/area": "^6.0.1",
"@turf/centroid": "^6.0.2",
"@turf/nearest-point-on-line": "^6.0.2",
"@turf/points-within-polygon": "^5.1.5",
"chai": "^4.2.0",
"turf-point": "^2.0.1",
"voronoi": "^1.0.0"
},
"devDependencies": {
"esm": "^3.2.25",
"file-cli": "^1.2.0",
"mocha": "^7.1.1",
"parcel": "^1.12.4"
},
"scripts": {
"clean": "fcli remove ./dist",
"rename:lib": "fcli move ./dist/max-inscribed-circle.js ./dist/max-inscribed-circle.es5.min.js -o",
"rename:map": "fcli move ./dist/max-inscribed-circle.js.map ./dist/max-inscribed-circle.es5.min.js.map -o",
"build": "parcel build ./max-inscribed-circle.js",
"prepublishOnly": "npm run build && npm run rename:lib && npm run rename:map",
"test": "mocha --require esm test --reporter spec --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/PieceMaker/max-inscribed-circle.git"
},
"author": "Jonathan Adams",
"license": "MIT",
"bugs": {
"url": "https://github.com/PieceMaker/max-inscribed-circle/issues"
},
"homepage": "https://github.com/PieceMaker/max-inscribed-circle"
}