-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "@datayoga-io/node-g6",
"version": "1.0.5",
"description": "server side rendering of g6 based graph flowcharts",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "mkdir -p dist/ && touch dist/index.js",
"build": "tsc && chmod +x dist/cli.js"
},
"bin": {
"node-g6": "./dist/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/datayoga-io/node-g6.git"
},
"keywords": [
"g6",
"graphviz",
"graph",
"dagre",
"dag",
"visualization",
"node"
],
"author": "Oren Elias",
"license": "MIT",
"bugs": {
"url": "https://github.com/datayoga-io/node-g6/issues"
},
"homepage": "https://github.com/datayoga-io/node-g6#readme",
"dependencies": {
"@antv/g6": "^4.5.1",
"canvas": "^2.8.0",
"fs": "^0.0.1-security",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"yargs": "^17.3.0"
},
"devDependencies": {
"@types/node": "^17.0.0",
"@types/yargs": "^17.0.7"
}
}