-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "polygonize",
"version": "1.0.4",
"description": "Javascript implementation of GEOS's Polygonize function",
"main": "cjs/index.js",
"module": "src/index.js",
"scripts": {
"test": "npm run lint && npm run test-src && npm run bench",
"test-cjs": "npm run build-cjs && tape cjs/*.test.js cjs/test.js",
"test-src": "tape -r @std/esm src/*.test.js src/test.js",
"lint": "eslint .",
"prebuild": "rimraf cjs",
"build-cjs": "babel src --out-dir cjs",
"build": "npm run build-cjs",
"prepublishOnly": "npm run build",
"bench-src": "node -r @std/esm src/bench.js",
"bench-cjs": "node cjs/bench.js",
"bench": "npm run bench-src"
},
"repository": {
"type": "git",
"url": "git://github.com/nickcis/polygonize.git"
},
"keywords": [
"geojson",
"gis",
"polygonize",
"polygon",
"line",
"linestring"
],
"author": "Nicolas Cisco <@nickcis>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickcis/polygonize/issues"
},
"homepage": "https://github.com/nickcis/polygonize#readme",
"devDependencies": {
"@std/esm": "^0.11.3",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"benchmark": "^2.1.4",
"eslint": "^3.19.0",
"eslint-config-mourner": "^2.0.1",
"load-json-file": "^2.0.0",
"rimraf": "^2.6.2",
"tape": "^4.6.3",
"write-json-file": "^2.2.0"
},
"dependencies": {
"@turf/envelope": "*",
"@turf/helpers": "*",
"@turf/boolean-point-in-polygon": "*",
"@turf/invariant": "*",
"@turf/meta": "*"
},
"@std/esm": {
"esm": "js",
"cjs": true
}
}