-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 989 Bytes
/
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
{
"name": "bionode-fastq",
"version": "2.2.0",
"homepage": "http://bionode.io",
"description": "Streamable FASTQ parser",
"scripts": {
"test": "standard && mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": {
"name": "Martin Page",
"email": "[email protected]"
},
"keywords": [
"bio",
"biology",
"bioinformatics",
"bionode",
"fastq",
"parser",
"streams",
"cli",
"science"
],
"main": "index.js",
"bin": {
"bionode-fastq": "cli.js"
},
"license": "MIT",
"devDependencies": {
"chai": "^2.2.0",
"mocha": "^2.2.4",
"standard": "^3.5.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13"
},
"dependencies": {
"minimist": "^1.2.0"
}
}