-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "paxdb-orthology-lib",
"version": "5.0.0",
"private": false,
"description": "pax-db.org orthology API library",
"author": "Milan Simonovic <milan.simonovic@imls.uzh.ch>",
"license": "MIT",
"main": "src/storage.js",
"repository": {
"type": "git",
"url": "https://github.com/meringlab/paxdb-orthology-lib/"
},
"keywords": [
"paxdb",
"pax-db",
"pax-db.org",
"protein",
"orthologs"
],
"scripts": {
"lint": "./node_modules/.bin/eslint src/*",
"test": "mocha test/*.js",
"integration-test": "mocha integration_test/storage.js"
},
"dependencies": {
"bunyan": "~1.8",
"seraph": "~0.15",
"underscore": "~1.13",
"when": "~3.7"
},
"devDependencies": {
"chai": "*",
"disposable-seraph": "~0.5",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.2",
"mocha": "~8",
"superagent": "~7.0"
},
"engines": {
"node": "10.x"
}
}