-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.37 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.37 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
{
"name": "@streamr/quick-dijkstra",
"version": "1.2.4",
"description": "Dijkstra Shortest Path Algorithm implemented as a nodejs native module",
"keywords": [
"dijkstra",
"native",
"c++",
"typescript",
"webassembly"
],
"main": "src/js/quickdijkstra.js",
"typings": "src/js/quickdijkstra.d.ts",
"private": false,
"gypfile": true,
"scripts": {
"test": "jest --runInBand",
"speedtest": "cd examples/native && node speedtest.js",
"typedoc": "cd src/js && npx typedoc --out ../../doc/native --excludeExternals --externalPattern **/node_modules/** --plugin typedoc-plugin-markdown ./quickdijkstra.d.ts",
"wasm-typedoc": "cd src/wasmjs && npx typedoc --out ../../doc/wasm --excludeExternals --externalPattern **/node_modules/** --plugin typedoc-plugin-markdown ./quickdijkstra-wasm.d.ts",
"wasm-compile": "./wasm-compile.sh",
"wasm-speedtest": "cd examples/wasm/javascript-node && node wasmspeedtest.js"
},
"dependencies": {
"@streamr/quick-dijkstra-wasm": "file:wasmdist",
"bindings": "~1.2.1",
"json-beautify": "^1.1.1",
"node-addon-api": "^1.0.0"
},
"devDependencies": {
"babel-jest": "^26.6.3",
"jest": "^26.6.0",
"js-graph-algorithms": "^1.0.18",
"jsdoc-to-markdown": "^8.0.1",
"typedoc": "^0.25.9",
"typedoc-plugin-markdown": "^3.4.5",
"typescript": "^4.1.3"
},
"license": "AGPL"
}