-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 985 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
42
43
44
45
{
"name": "bionode-vcf",
"description": "a vcf parser in javascript",
"version": "1.3.0",
"homepage": "https://github.com/bionode/bionode-vcf",
"author": {
"name": "Shyam Rallapalli",
"email": "shyam.rallapalli@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/bionode/bionode-vcf.git"
},
"bugs": {
"url": "https://github.com/bionode/bionode-vcf/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bionode/bionode-vcf/blob/master/LICENSE"
}
],
"main": "lib/index.js",
"scripts": {
"test": "standard && dependency-check . && mocha"
},
"dependencies": {
"events": "^1.1.1",
"readline": "^1.3.0",
"stream": "0.0.2",
"unzip-stream": "^0.3.0"
},
"devDependencies": {
"chai": "^4.0.1",
"dependency-check": "^2.8.0",
"mocha": "^3.4.2",
"standard": "^10.0.2"
},
"keywords": [
"vcf parser",
"vcf",
"bionode",
"bionode"
]
}