-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
{
"name": "visibility-graph.js",
"version": "1.0.0",
"description": "A js library for creating visibility graphs",
"main": "dist/visibilityGraph.js",
"scripts": {
"build": "rollup -c",
"build:docs": "vite build debug",
"debug": "vite serve debug",
"test": "ava --verbose",
"test:e2e": "ava ./test/test.spec.js --verbose",
"test:coverage": "nyc ava"
},
"author": "Rowan Winsemius",
"license": "MIT",
"ava": {
"files": [
"./test/*.spec.js",
"!./test/harness/**"
],
"require": [
"esm"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-strip": "^2.1.0",
"@turf/distance": "^6.5.0",
"@turf/truncate": "^6.5.0",
"@turf/turf": "^6.5.0",
"@vitejs/plugin-vue": "^2.2.0",
"ava": "^1.2.1",
"eslint": "^3.0.0",
"eslint-plugin-vue-libs": "^1.2.0",
"esm": "^3.2.5",
"leaflet": "^1.7.1",
"load-json-file": "^5.2.0",
"ngraph.fromjson": "^0.1.9",
"ngraph.path": "^1.0.3",
"ngraph.tojson": "^0.1.4",
"nyc": "^13.3.0",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"ttf-loader": "^1.0.2",
"vite": "^2.8.0",
"vue": "^3.2.25"
},
"dependencies": {
"avl": "^1.5.3",
"ngraph.graph": "0.0.15",
"robust-predicates": "^2.0.4"
}
}