-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "@ladybugmem/icebug",
"version": "0.1.3",
"description": "Node.js bindings for icebug – high-performance graph analytics (NetworKit fork with Arrow CSR support)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"src/",
"prebuilds/",
"binding.gyp",
"scripts/download-icebug.sh",
"scripts/install.js"
],
"scripts": {
"install": "node scripts/install.js",
"download": "bash scripts/download-icebug.sh",
"build": "npm run download && node-gyp rebuild",
"build:debug": "npm run download && node-gyp rebuild --debug",
"clean": "node-gyp clean",
"test": "node test/basic.test.js"
},
"keywords": ["graph", "network", "analytics", "networkit", "icebug", "betweenness", "pagerank"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ladybug-Memory/icebug-nodejs"
},
"dependencies": {
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"node-gyp": "^10.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}