-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 966 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 966 Bytes
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
{
"author": "Cameron Chamberlain",
"bugs": {
"url": "https://github.com/camjc/package-graph/issues"
},
"dependencies": {
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"express-session": "^1.17.0",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"semver": "^6.3.0",
"viz.js": "^2.1.2"
},
"description": "Graph your package.json dependencies within your github organisation",
"devDependencies": {
"jest": "^24.9.0"
},
"homepage": "https://github.com/camjc/package-graph#readme",
"keywords": [
"graphviz",
"package",
"visualisation"
],
"license": "GPL-3.0-or-later",
"main": "./lib/index.js",
"name": "package-graph",
"repository": {
"type": "git",
"url": "git+https://github.com/camjc/package-graph.git"
},
"scripts": {
"start": "node ./lib/index.js",
"test": "jest --watch"
},
"version": "1.0.0"
}