-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.54 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
56
57
58
59
60
61
62
63
64
{
"name": "obographviz",
"version": "0.4.3",
"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/INCATools/obographviz.git"
},
"engines": {
"node": ">=14.16"
},
"type": "module",
"dependencies": {
"bbop-graph": "^0.0.19",
"commander": "^9.2.0",
"graphlib": "^2.1.8",
"graphlib-dot": "^0.6.4",
"open": "^9.1.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/node": "^17.0.31",
"chai": "^4.3.6",
"execa": "^6.1.0",
"jsdoc": "^3.6.10",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
},
"private": false,
"bin": {
"og2dot": "./bin/og2dot.js"
},
"files": [
"dist"
],
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/INCATools/obographviz/issues"
},
"scripts": {
"dev": "tsc -p tsconfig.json --watch",
"prebuild": "npm run clean:build",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"clean": "npm run clean:docs && npm run clean:build",
"clean:build": "rimraf dist",
"clean:docs": "rimraf docs",
"predocs": "npm run clean:docs",
"docs": "jsdoc -d docs -r lib",
"test": "mocha tests/*.test.js",
"watch:docs": "nodemon -w lib -x \"npm run docs\"",
"watch:test": "nodemon -w lib -w tests -x \"npm test\""
}
}