-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.06 KB
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
{
"name": "bionode-gxa",
"description": "Module for EBI Gene Expression Data",
"version": "0.0.1",
"homepage": "http://bionode.io",
"repository": {
"type": "git",
"url": "git://github.com/bionode/bionode-gxa.git"
},
"author": {
"name": "Bruno Vieira",
"email": "mail@bmpvieira.com"
},
"license": "MIT",
"dependencies": {
"JSONStream": "^1.1.3",
"pumpify": "^1.3.5",
"request": "^2.73.0",
"concat-stream": "~1.4.8",
"split2": "^2.1.0",
"through2": "^2.0.1",
"url": "^0.11.0"
},
"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.1",
"testling": "^1.7.0",
"uglify-js": "^2.4.15"
},
"keywords": [
"bioinformatics",
"genomics",
"genetics",
"dna",
"util",
"server",
"client",
"browser"
],
"main": "index.js",
"scripts": {
"test": "node test/bionode-gxa.js | tap-spec",
"test-browser": "browserify test/bionode-gxa.js | testling | tap-spec",
"coverage": "istanbul cover test/bionode-gxa.js --report lcovonly -- | tap-spec && rm -rf ./coverage",
"coveralls": "istanbul cover test/bionode-gxa.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-gxa | uglifyjs > bionode-gxa.min.js",
"build-docs": "docco ./lib/bionode-gxa.js"
},
"testling": {
"files": "test/bionode-gxa.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": "Bruno Vieira",
"email": "mail@bmpvieira.com",
"url": "https://github.com/bmpvieira",
"contributions": 15,
"hireable": false
}
]
}