forked from mfogel/geojson-clipping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1002 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
41
{
"name": "geojson-clipping",
"version": "0.3.0",
"description": "Apply boolean polygon clipping operations (union, intersection, difference, xor) to Polygons & MultiPolygons in your GeoJSON files.",
"bin": "src/cli.js",
"scripts": {
"test": "jest",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"resetMocks": true,
"testEnvironment": "node"
},
"keywords": [
"geojson",
"clipping",
"boolean",
"intersection",
"union",
"difference",
"xor"
],
"repository": "github:mfogel/geojson-clipping",
"author": "Mike Fogel <mike@fogel.ca>",
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"mkdirp": "^0.5.5",
"polygon-clipping": "^0.14",
"split": "^1.0.1",
"yargs": "^11.1.1"
},
"devDependencies": {
"child-process-promise": "^2.2.1",
"coveralls": "^3.1.0",
"jest": "^22.4.4",
"rimraf": "^2.7.1"
}
}