-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.85 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
{
"name": "fasta-parser",
"description": "Buffer Stream parser from FASTA to JSON",
"version": "0.1.0",
"homepage": "https://github.com/bionode/fasta-parser",
"repository": {
"type": "git",
"url": "git://github.com/bionode/fasta-parser.git"
},
"author": {
"name": "Bruno Vieira",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"bl": "^1.2.0",
"pumpify": "^1.3.0",
"split": "^1.0.0",
"through2": "~2.0.3"
},
"devDependencies": {
"browserify": "^14.3.0",
"coveralls": "~2.13.0",
"dependency-check": "^2.8.0",
"docco": "~0.7.0",
"istanbul": "~0.4.5",
"standard": "^10.0.1",
"tap-spec": "~4.1.1",
"tape": "~4.6.3",
"testling": "^1.7.0",
"uglify-js": "~2.8.22"
},
"keywords": [
"bio",
"biology",
"bioinformatics",
"fasta",
"parser",
"streams",
"science"
],
"main": "index.js",
"scripts": {
"test": "standard && dependency-check . && node test/fasta-parser.js | tap-spec",
"test-browser": "browserify test/*.js | testling | tap-spec",
"coverage": "istanbul cover test/fasta-parser.js --report lcovonly -- | tap-spec && rm -rf ./coverage",
"coveralls": "istanbul cover test/fasta-parser.js --report lcovonly -- | tap-spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
"build-browser": "browserify index.js -r ./index.js:fasta-parser | uglifyjs > fasta-parser.min.js",
"build-docs": "docco ./lib/fasta-parser.js"
},
"testling": {
"files": "test/fasta-parser.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"
]
}
}