-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "contraction-hierarchy-js",
"version": "1.2.1",
"description": "Contraction Hierarchy",
"main": "index.js",
"module": "main.js",
"scripts": {
"test": "cd test && node routing-tests.js",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"proto": "pbf src/structure.proto > src/structure.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/royhobbstn/contraction-hierarchy-js.git"
},
"keywords": [
"contraction",
"hierarchy",
"dijkstra",
"algorithm"
],
"author": "Daniel Trone",
"license": "MIT",
"bugs": {
"url": "https://github.com/royhobbstn/contraction-hierarchy-js/issues"
},
"homepage": "https://github.com/royhobbstn/contraction-hierarchy-js#readme",
"dependencies": {
"esm": "3.2.25",
"geokdbush": "1.1.0",
"kdbush": "2.0.1",
"nanoclone": "0.2.1",
"pbf": "^3.2.0"
},
"devDependencies": {
"ngraph.graph": "0.0.18",
"ngraph.path": "1.1.0",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.1"
},
"files": [
"src",
"index.js",
"main.js",
"dist"
]
}