-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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": "functree-cli",
"version": "0.2.0",
"description": "Visualization and analysis tool for omics data based on biological functional tree",
"author": {
"name": "Yuta Yamate",
"email": "yyamate@bio.titech.ac.jp",
"url": "https://yyuuta88.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/yyuuta88/functree-cli.git"
},
"bugs": {
"url": "https://github.com/yyuuta88/functree-cli/issues"
},
"homepage": "http://www.bioviz.tokyo/functree2/",
"license": "MIT",
"keywords": [
"visualization",
"bioinformatics",
"biology",
"bio",
"omics",
"kegg",
"cli"
],
"main": "./dist/functree.js",
"bin": {
"functree": "./bin/functree"
},
"dependencies": {
"colors": "^1.1.2",
"d3": "^3.5.17",
"jsdom": "^9.0.0",
"svg2png": "^4.1.1",
"tmp": "0.0.31",
"yargs": "^7.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.18.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0"
},
"scripts": {
"lint": "gulp lint",
"babel": "gulp babel",
"build": "gulp build",
"watch": "gulp watch"
},
"private": false
}