-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 785 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 785 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
{
"name": "k8s-dot-graph",
"version": "0.1.1",
"description": "library to convert kubernetes descriptions to a dot (grpahviz) graph",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/ava -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrishiestand/node-k8s-dot-graph.git"
},
"keywords": [
"kubernetes",
"k8s",
"graphviz",
"dot",
"network",
"graph"
],
"author": "Chris Hiestand <chrishiestand@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrishiestand/node-k8s-dot-graph/issues"
},
"homepage": "https://github.com/chrishiestand/node-k8s-dot-graph#readme",
"dependencies": {
"ramda": "^0.24.1"
},
"devDependencies": {
"ava": "^0.22.0"
}
}