-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "dependencies2graph",
"version": "0.11.0",
"description": "interactively search and check your application internal dependencies or generate static images for documentations",
"main": "dist/main.js",
"bin": "dist/bin/cli.js",
"preferGlobal": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"dependencies",
"visualisation",
"static analysis",
"architecture",
"dependency graph"
],
"author": {
"name": "Christoph Hoffmann",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@dagrejs/graphlib": "^2.1.4",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"lodash.groupby": "^4.6.0",
"viz.js": "^2.0.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/express": "^4.0.39",
"@types/graphlib": "^2.1.4",
"@types/lodash.groupby": "^4.6.4",
"@types/node": "^10.1.2",
"@types/yargs": "^12.0.1",
"rimraf": "^2.6.2",
"typescript": "^3.3.3333"
},
"engines": {
"node": ">7.5"
},
"repository": {
"type": "git",
"url": "https://github.com/no0x9d/dependencies2graph.git"
},
"bugs": {
"url": "https://github.com/no0x9d/dependencies2graph/issues"
},
"homepage": "https://github.com/no0x9d/dependencies2graph"
}