-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 843 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 843 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
{
"name": "graph-wrangle",
"version": "0.1.6",
"description": "A command-line tool and library for wrangling network graph data",
"main": "lib/index.js",
"repository": "https://github.com/cortico/graph-wrangle",
"author": "Peter Beshai",
"license": "MIT",
"engines": {
"node": ">=8"
},
"bin": {
"graph-wrangle": "bin/graph-wrangle.js"
},
"scripts": {
"prettier": "prettier --write \"{bin,lib}/**/*.js\""
},
"dependencies": {
"canvas": "^2.0.0-alpha.5",
"commander": "^2.11.0",
"d3": "^5.0.0",
"d3-force-3d": "^1.0.7",
"debug": "^3.1.0",
"glob": "^7.1.2",
"mkdirp": "^0.5.1",
"moment": "^2.19.1",
"progress": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.1.1",
"eslint-plugin-import": "^2.6.0",
"prettier": "1.7.4"
}
}