-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "bionode-ncbi",
"description": "Node.js module for working with the NCBI API (aka e-utils) using Streams.",
"version": "2.0.0",
"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": "^1.3.1",
"async": "^2.3.0",
"bionode-fasta": "^0.5.6",
"cheerio": "^0.22.0",
"concat-stream": "~1.6.0",
"debug": "^2.6.4",
"insight": "^0.8.4",
"mkdirp": "^0.5.1",
"nugget": "^2.0.1",
"pumpify": "^1.3.5",
"request": "^2.81.0",
"split2": "^2.1.1",
"through2": "^2.0.3",
"tool-stream": "0.2.1",
"xml2js": "^0.4.17",
"yargs": "^7.1.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"contributor": "~0.1.25",
"coveralls": "~2.13.0",
"dependency-check": "^2.8.0",
"docco": "~0.7.0",
"istanbul": "~0.4.5",
"standard": "^10.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-nock": "^1.6.0",
"testling": "^1.7.1",
"uglify-js": "^2.8.22"
},
"keywords": [
"bio",
"bionode",
"bioinformatics",
"biology",
"ncbi",
"api",
"streams",
"client",
"server",
"cli"
],
"main": "index.js",
"bin": {
"bionode-ncbi": "cli.js"
},
"scripts": {
"test": "standard && dependency-check . && tape test/**/*.js | tap-spec",
"test-browser": "browserify test/*.js -d | testling -x 'open -a \"Google Chrome\"' | tap-spec",
"coverage": "standard && dependency-check . && istanbul cover tape test/**/*.js --report lcovonly -- | tap-spec && rm -rf ./coverage",
"coveralls": "istanbul cover tape test/**/*.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"
}