-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
97 lines (97 loc) · 2.57 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
{
"name": "bionode-fasta",
"description": "Streamable FASTA parser",
"version": "0.5.6",
"homepage": "http://bionode.io",
"repository": {
"type": "git",
"url": "git://github.com/bionode/bionode-fasta.git"
},
"author": {
"name": "Bruno Vieira",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"concat-stream": "~1.6.0",
"fasta-parser": "0.1.0",
"minimist": "~1.2.0",
"pumpify": "~1.3.5",
"split2": "^2.1.1",
"through2": "~2.0.3"
},
"devDependencies": {
"async": "~2.3.0",
"beefy": "^2.1.8",
"browserify": "git+https://github.com/bmpvieira/node-browserify#3.46.1/http-browserify-1.6.0-pull-53-61-62",
"browserify-fs": "~1.0.0",
"contributor": "~0.1.25",
"coveralls": "~2.13.0",
"docco": "~0.7.0",
"istanbul": "~0.4.5",
"request": "~2.81.0",
"standard": "^10.0.2",
"tap-spec": "~4.1.1",
"tape": "~4.6.3",
"testling": "^1.7.1",
"uglify-js": "~2.8.22"
},
"keywords": [
"bio",
"biology",
"bioinformatics",
"bionode",
"fasta",
"parser",
"streams",
"cli",
"science"
],
"main": "index.js",
"bin": {
"bionode-fasta": "cli.js"
},
"browser": {
"fs": "browserify-fs"
},
"scripts": {
"test": "standard && node test/bionode-fasta.js | tap-spec",
"test-browser": "browserify test/bionode-fasta.js | testling -x 'open -a \"Google Chrome\"' | tap-spec",
"coverage": "istanbul cover test/bionode-fasta.js --report lcovonly -- | tap-spec && rm -rf ./coverage",
"coveralls": "istanbul cover test/bionode-fasta.js --report lcovonly -- | tap-spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
"build-browser": "browserify index.js -r ./index.js:bionode-fasta | uglifyjs > bionode-fasta.min.js",
"build-docs": "docco ./lib/bionode-fasta.js"
},
"testling": {
"files": "test/bionode-fasta.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
},
"contributors": [
{
"name": "Alan Rice",
"email": "[email protected]",
"url": "https://github.com/alanrice",
"contributions": 12,
"hireable": false
},
{
"name": "Bruno Vieira",
"email": "[email protected]",
"url": "https://github.com/bmpvieira",
"contributions": 1,
"hireable": false
}
]
}