-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
41
42
43
44
45
46
47
48
49
{
"name": "graph-drawing",
"version": "1.0.0",
"description": "A Javascript tool to help explore and compare different graph layout algorithms.",
"main": "main.js",
"scripts": {
"start": "webpack && electron .",
"watch": "webpack --watch --silent & electron .",
"test": "jest",
"layoutTest": "webpack --watch --silent & electron . layoutTest"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/talal__l/graph-drawing.git"
},
"author": "Talal",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/talal__l/graph-drawing/issues"
},
"homepage": "https://gitlab.com/talal__l/graph-drawing#readme",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.1.0",
"electron": "^8.0.0",
"eslint": "^5.16.0",
"jest": "^25.1.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"d3": "^5.16.0",
"graphology": "^0.14.1"
},
"keywords": [
"graph",
"layout",
"graph-drawing",
"network",
"visualization"
]
}