-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "biojs-io-gff",
"description": "A GFF (general feature format) parser",
"version": "0.1.10",
"homepage": "https://github.com/greenify/biojs-io-gff",
"author": {
"name": "greenify",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/greenify/biojs-io-gff.git"
},
"bugs": {
"url": "https://github.com/greenify/biojs-io-gff/issues"
},
"licenses": [
{
"type": "Apache 2",
"url": "https://github.com/greenify/biojs-io-gff/blob/master/LICENSE"
}
],
"main": "lib/index",
"scripts": {
"test": "gulp test",
"build-browser": "mkdirp build; browserify browser.js -o build/biojs-io-gff.js",
"build-browser-min": "gulp build-browser-gzip",
"prepublish": "gulp",
"watch": "mkdirp build; watchify browser.js -o build/biojs-io-gff.js"
},
"dependencies": {
"biojs-io-parser": "^1.0.0",
"gulp": "^3.8.10",
"nets": "^1.0.0"
},
"devDependencies": {
"browserify": "~4.2.0",
"chai": "^1.9.1",
"gulp": "^3.8.8",
"gulp-browserify": "^0.5.0",
"gulp-gzip": "0.0.8",
"gulp-jshint": "^1.8.4",
"gulp-mocha": "^1.0.0",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.1.0",
"gulp-uglify": "^1.0.1",
"gulp-watch": "^1.0.2",
"mkdirp": "^0.5.0",
"mocha": "~1.20.1",
"uglify-js": "~2.4.15",
"watchify": "^1.0.2"
},
"shields": {
"build": {
"img": "https://travis-ci.org/greenify/biojs-io-gff.svg?branch=master",
"href": "https://travis-ci.org/greenify/biojs-io-gff"
}
},
"keywords": [
"biojs",
"io",
"gff",
"parser",
"feature"
]
}