-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "shamos-hoey",
"version": "1.1.0",
"description": "A module to check if a polygon self-intersects",
"main": "dist/shamosHoey.js",
"module": "dist/shamosHoey.esm.js",
"unpkg": "dist/shamosHoey.min.js",
"jsdelivr": "dist/shamosHoey.min.js",
"scripts": {
"bench": "npm run build && node test/benchmark.js",
"build": "rollup -c",
"debug": "cross-env webpack-dev-server --config debug/webpack.config.js --mode development --open --hot",
"test": "ava --verbose",
"test:e2e": "ava ./test/test.spec.js --verbose",
"test:coverage": "nyc ava"
},
"ava": {
"files": [
"test/*.spec.js"
],
"require": [
"esm"
]
},
"author": {
"name": "Rowan Winsemius"
},
"license": "MIT",
"dependencies": {
"splaytree": "^2.0.3",
"tinyqueue": "^2.0.0"
},
"devDependencies": {
"ava": "^1.0.1",
"benchmark": "^2.1.4",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-mourner": "^3.0.0",
"esm": "^3.0.84",
"file-loader": "^3.0.1",
"geojson-polygon-self-intersections": "^1.2.0",
"glob": "^7.1.3",
"json-loader": "^0.5.7",
"leaflet": "^1.4.0",
"load-json-file": "^5.1.0",
"nyc": "^13.1.0",
"polygon": "^1.0.2",
"rollup": "^1.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-strip": "^1.2.1",
"rollup-plugin-terser": "^4.0.2",
"serve": "^10.1.1",
"sweepline-intersections": "^0.0.1",
"vue": "^2.5.22",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"keywords": [
"geojson",
"polygon",
"complex polygon",
"simple polygon",
"self-intersection"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rowanwins/shamos-hoey.git"
},
"homepage": "https://github.com/rowanwins/shamos-hoey"
}