-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 948 Bytes
/
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
{
"name": "bionode-obo",
"version": "0.1.1",
"description": "OBO flat file format parser for ontologies",
"main": "index.js",
"scripts": {
"test": "mocha test/obo.spec.js",
"docs": "jsdoc2md --template docs/README.hbs src/*.js > README.md && jsdoc src/*.js -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thejmazz/bionode-obo.git"
},
"author": "Julian Mazzitelli <mazzitell.julian@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thejmazz/bionode-obo/issues"
},
"homepage": "https://github.com/thejmazz/bionode-obo#readme",
"devDependencies": {
"chai": "^4.0.1",
"mocha": "^3.4.2"
},
"dependencies": {
"bl": "^1.2.1",
"eventemitter2": "^4.1.0",
"highland": "^2.10.5",
"lodash": "^4.17.4",
"pumpify": "^1.3.5",
"request": "^2.81.0",
"split": "^1.0.0",
"through2": "^2.0.3",
"through2-filter": "^2.0.0"
}
}