-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 850 Bytes
/
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
{
"name": "ngraph.louvain",
"version": "2.0.0",
"description": "Given a graph instance detects communities using the Louvain Method",
"main": "index.js",
"scripts": {
"test": "tap --allow-incomplete-coverage test/*.js",
"demo": "browserify demo/basic/index.js > demo/basic/bundle.js && browserify demo/coarse/index.js > demo/coarse/bundle.js"
},
"keywords": [
"modularity",
"graph",
"community",
"structure",
"louvain",
"blondel"
],
"author": "Andrei Kashcha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anvaka/ngraph.louvain"
},
"dependencies": {
"ngraph.random": "1.0.0"
},
"devDependencies": {
"miserables": "^2.0.0",
"ngraph.coarsen": "^1.5.0",
"ngraph.graph": "^20.0.0",
"ngraph.svg": "0.0.17",
"tap": "^21.0.1"
}
}