forked from bionode/bionode-ncbi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "bionode-ncbi",
"description": "Node.js module for working with the NCBI API (aka e-utils) using Streams.",
"version": "1.6.1",
"homepage": "http://github.com/bionode/bionode-ncbi",
"repository": {
"type": "git",
"url": "http://github.com/bionode/bionode-ncbi.git"
},
"author": {
"name": "Bruno Vieira",
"email": "[email protected]"
},
"dependencies": {
"JSONStream": "^0.10.0",
"async": "^0.9.0",
"bionode-fasta": "^0.5.3",
"cheerio": "^0.19.0",
"concat-stream": "~1.4.8",
"debug": "^2.1.3",
"minimist": "^1.1.1",
"mkdirp": "^0.5.0",
"nugget": "^1.4.1",
"pumpify": "^1.3.3",
"request": "^2.55.0",
"split2": "^2.0.1",
"through2": "^0.6.3",
"tool-stream": "0.2.1",
"xml2js": "^0.4.6"
},
"devDependencies": {
"standard": "^3.3.2",
"dependency-check": "^2.3.1",
"browserify": "^9.0.7",
"contributor": "~0.1.25",
"coveralls": "~2.11.2",
"docco": "~0.7.0",
"istanbul": "~0.3.13",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"testling": "^1.7.1",
"uglify-js": "^2.4.19",
"nock": "2.11.0"
},
"keywords": [
"bio",
"bionode",
"bioinformatics",
"biology",
"ncbi",
"api",
"streams",
"client",
"server",
"cli"
],
"main": "index.js",
"bin": {
"bionode-ncbi": "cli.js"
},
"scripts": {
"test": "standard && dependency-check . && node test/*.js | tap-spec && rm -rf ./503988",
"test-browser": "browserify test/*.js -d | testling -x 'open -a \"Google Chrome\"' | tap-spec",
"coverage": "standard && dependency-check . && istanbul cover test/bionode-ncbi.js --report lcovonly -- | tap-spec && rm -rf ./coverage",
"coveralls": "istanbul cover test/bionode-ncbi.js --report lcovonly -- | tap-spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
"build-browser": "browserify -r ./index.js:bionode-ncbi | uglifyjs > bionode-ncbi.min.js",
"build-docs": "docco ./lib/bionode-ncbi.js"
},
"license": "MIT",
"contributors": [
{
"name": "Filip Tér",
"email": null,
"url": "https://github.com/terfn",
"contributions": 7,
"additions": 444,
"deletions": 195,
"hireable": null
},
{
"name": "Bruno Vieira",
"email": "[email protected]",
"url": "https://github.com/bmpvieira",
"contributions": 110,
"additions": 4818,
"deletions": 1929,
"hireable": null
},
{
"name": "=^._.^=",
"email": null,
"url": "https://github.com/maxogden",
"contributions": 7,
"additions": 84,
"deletions": 61,
"hireable": null
}
]
}