-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 855 Bytes
/
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
{
"name": "terminal-graphs",
"version": "1.0.7",
"description": "Layouts and prints graphs (DAGs) to the terminal.",
"repository": {
"type": "git",
"url": "git+https://github.com/LittleHelicase/terminal-graphs.git"
},
"author": "LittleHelicase",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm run build",
"test": ""
},
"bin": {
"terminal-graphs": "lib/cli.js"
},
"keywords": [
"graph",
"terminal"
],
"license": "MIT",
"dependencies": {
"graphify-node": "1.0.0",
"graphlib2kgraph": "1.0.0",
"bresenham": "0.0.4",
"cli-ext": "1.1.0",
"graphlib": "2.1.1",
"graphlib-dot": "0.6.2",
"lodash": "4.17.2",
"yargs": "6.5.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-pipe-composition": "^0.1.1"
}
}