-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "bionode-sam",
"description": "Node.js wrapper for samtools.",
"version": "1.0.1",
"homepage": "http://github.com/bionode/bionode-sam",
"repository": {
"type": "git",
"url": "git://github.com/bionode/bionode-sam.git"
},
"author": {
"name": "Bruno Vieira",
"email": "[email protected]"
},
"dependencies": {
"minimist": "^1.2.0",
"through2": "^2.0.3"
},
"devDependencies": {
"coveralls": "~2.13.1",
"dependency-check": "^2.8.0",
"istanbul": "~0.4.5",
"mocha": "~3.4.2",
"mocha-lcov-reporter": "1.3.0",
"should": "~11.2.1",
"standard": "^10.0.2"
},
"keywords": [
"bio",
"biology",
"bioinformatics",
"bionode",
"samtools",
"bcftools",
"wrapper",
"installer",
"streams",
"cli"
],
"main": "index.js",
"bin": {
"bionode-sam": "cli.js"
},
"scripts": {
"preinstall": "sam/build.sh",
"test": "standard && dependency-check . && mocha",
"coverage": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage",
"coveralls": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
},
"license": "MIT"
}