forked from INCATools/obographviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.24 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
55
{
"name": "obographviz",
"version": "0.3.0",
"license": "BSD-3-Clause",
"description": "Visualize OBO graphs with (Graph)Viz.js.",
"keywords": [
"rdf",
"ontology",
"viz"
],
"author": "Chris Mungall",
"homepage": "http://berkeleybop.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/cmungall/obographviz.git"
},
"engines": {
"node": ">= 0.12.2",
"npm": ">= 2.7.4"
},
"dependencies": {
"bbop-graph": "*",
"graphlib": "*",
"graphlib-dot": "*",
"node-getopt": "*",
"npm": "^6.2.0",
"require-dir": "^1.0.0"
},
"devDependencies": {
"chai": "*",
"del": "*",
"gulp": "*",
"gulp-bump": "*",
"gulp-jshint": "*",
"gulp-mocha": "*",
"gulp-streamify": "*",
"gulp-uglify": "*",
"jsdoc": "*"
},
"bundleDependencies": [],
"private": false,
"directories": {
"doc": "doc",
"lib": "lib",
"tests": "tests"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/cmungall/obographviz/issues"
},
"scripts": {
"update-docs": "git checkout gh-pages && git pull && git merge master && gulp doc && git commit -a -m 'bump docs' && git push && git checkout master",
"test": "./node_modules/.bin/gulp test"
}
}