-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.19 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
{
"name": "bionode-seq",
"description": "Module for DNA, RNA and protein sequences manipulation",
"version": "0.1.1",
"homepage": "http://bionode.io",
"repository": {
"type": "git",
"url": "git://github.com/bionode/bionode-seq.git"
},
"author": {
"name": "Bruno Vieira",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0",
"ndjson": "^1.5.0",
"through2": "^2.0.3"
},
"devDependencies": {
"browserify": "^5.11.0",
"contributor": "^0.1.16",
"coveralls": "~2.6.1",
"docco": "~0.6.2",
"istanbul": "~0.2.4",
"tap-spec": "^0.2.1",
"tape": "^2.14.0",
"testling": "^1.7.0",
"uglify-js": "^2.4.15"
},
"keywords": [
"bioinformatics",
"genomics",
"genetics",
"dna",
"util",
"server",
"client",
"browser"
],
"main": "index.js",
"bin": {
"bionode-seq": "cli.js"
},
"scripts": {
"test": "node test/bionode-seq.js | tap-spec",
"test-browser": "browserify test/bionode-seq.js | testling | tap-spec",
"coverage": "istanbul cover test/bionode-seq.js --report lcovonly -- | tap-spec && rm -rf ./coverage",
"coveralls": "istanbul cover test/bionode-seq.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-seq | uglifyjs > bionode-seq.min.js",
"build-docs": "docco ./lib/bionode-seq.js"
},
"testling": {
"files": "test/bionode-seq.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": 2,
"hireable": false
},
{
"name": "Bruno Vieira",
"email": "[email protected]",
"url": "https://github.com/bmpvieira",
"contributions": 15,
"hireable": false
}
]
}