-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "phypro",
"version": "0.1.0",
"description": "PhyPro - Advanced Phylogenetic Profile for Biologists",
"main": "index.js",
"scripts": {
"test": "NODE_PATH=node_modules node_modules/.bin/mocha --reporter mocha-pretty-bunyan-nyan $(find src -name '*tests.js')",
"nyc": "NODE_PATH=node_modules node_modules/.bin/nyc node_modules/.bin/mocha --reporter mocha-pretty-bunyan-nyan $(find src -name '*tests.js')",
"coverage": "NODE_PATH=node_modules node_modules/.bin/nyc report --reporter=text-lcov | coveralls"
},
"bin": {
"phypro": "./bin/cli-phypro.js",
"phypro-pickGenomes": "./bin/cli-pickGenomes.js"
},
"nyc": {
"exclude": [
"src/**tests.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhyPro/PhyPro.git"
},
"author": "Davi Ortega",
"license": "MIT",
"bugs": {
"url": "https://github.com/PhyPro/PhyPro/issues"
},
"homepage": "https://github.com/PhyPro/PhyPro#readme",
"dependencies": {
"argparse": "^1.0.10",
"bluebird": "^3.5.1",
"bunyan": "^1.8.12",
"chalk": "^2.4.1",
"figlet": "^1.2.0",
"istanbul": "^0.4.5",
"jsonfile": "^4.0.0",
"mkdirp": "^0.5.1",
"node-mist3": "^1.4.10",
"pfql": "^1.2.1",
"shelljs": "^0.7.8",
"through2": "^2.0.3",
"tnt.tree": "github:daviortega/tnt.tree#d3v4"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-fs": "^1.0.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"mocha": "^4.1.0",
"mocha-bunyan-reporter": "0.0.2",
"mocha-lcov-reporter": "^1.3.0",
"mocha-pretty-bunyan-nyan": "^1.0.4",
"nyc": "^11.9.0",
"rimraf": "^2.6.2"
}
}