forked from w8r/graphology-layout-forceatlas2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "graphology-layout-forceatlas2",
"version": "0.3.1",
"description": "ForceAtlas 2 layout algorithm for graphology.",
"main": "index.js",
"files": [
"build",
"defaults.js",
"helpers.js",
"index.js",
"iterate.js",
"supervisor.js",
"worker.js",
"webworker.js"
],
"scripts": {
"bench": "node bench.js",
"build": "webpack --colors --progress && webpack --colors --progress -p",
"lint": "eslint *.js",
"prepublish": "npm test && npm run lint && npm run build",
"test": "mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphology/graphology-layout-forceatlas2.git"
},
"keywords": [
"graph",
"graphology",
"layout",
"force atlas"
],
"author": {
"name": "Guillaume Plique",
"url": "http://github.com/Yomguithereal"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/graphology/graphology-layout-forceatlas2/issues"
},
"homepage": "https://github.com/graphology/graphology-layout-forceatlas2#readme",
"devDependencies": {
"@yomguithereal/eslint-config": "^4.0.0",
"eslint": "^4.7.2",
"graphology": "0.13.1",
"graphology-generators": "^0.10.1",
"mocha": "^5.2.0",
"seedrandom": "^2.4.3",
"webpack": "^3.6.0",
"worker-loader": "^1.0.0"
},
"eslintConfig": {
"extends": "@yomguithereal/eslint-config",
"globals": {
"Float32Array": true
}
},
"dependencies": {
"graphology-utils": "^1.3.1"
}
}