-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.66 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
{
"name": "bionode-template",
"description": "Template module to use as base for quickly creating bionode modules.",
"version": "0.0.5",
"homepage": "http://github.com/bionode/bionode-template",
"repository": {
"type": "git",
"url": "git://github.com/bionode/bionode-template.git"
},
"author": {
"name": "Bruno Vieira",
"email": "[email protected]"
},
"dependencies": {
"through2": "^2.0.3",
"debug": "^2.6.8",
"JSONStream": "^1.3.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"coveralls": "~2.13.1",
"dependency-check": "^2.8.0",
"docco": "~0.7.0",
"istanbul": "~0.4.5",
"split": "~1.0.0",
"standard": "^10.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"testling": "^1.7.1",
"uglify-js": "~3.0.15"
},
"keywords": [
"bio",
"biology",
"bioinformatics",
"bionode",
"template",
"api",
"streams",
"client",
"server",
"cli"
],
"main": "index.js",
"bin": {
"bionode-template": "cli.js"
},
"scripts": {
"test": "standard && dependency-check . && node test/bionode-template.js | tap-spec",
"test-browser": "browserify test/bionode-template.js | testling | tap-spec",
"coverage": "istanbul cover test/bionode-template.js --report lcovonly -- | tap-spec && rm -rf ./coverage",
"coveralls": "istanbul cover test/bionode-template.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-template | uglifyjs > bionode-template.min.js",
"build-docs": "docco ./lib/bionode-template.js"
},
"license": "MIT"
}