-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "paxdb-orthology-api",
"version": "5.0.1",
"private": false,
"description": "pax-db.org orthology API service",
"author": "Milan Simonovic <[email protected]>",
"license": "MIT",
"main": "bin/www",
"keywords": [
"paxdb",
"pax-db",
"pax-db.org",
"protein",
"orthologs"
],
"repository": {
"type": "git",
"url": "https://github.com/meringlab/paxdb-orthology-api"
},
"bugs": {
"url": "https://github.com/meringlab/paxdb-orthology-api/issues"
},
"scripts": {
"start": "node ./bin/www",
"lint": "./node_modules/eslint/bin/eslint.js bin/* routes/*",
"test": "mocha integration_test/app.js"
},
"dependencies": {
"bunyan": "^1.8",
"debug": "^4.0.1",
"ejs": "^2.6.1",
"express": "^4.17.1",
"express-negotiate": "^0.0.6",
"paxdb-orthology-lib": "^5",
"retry": "^0.12.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"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": "^5.2.0",
"superagent": "^7"
},
"engines": {
"node": "10.x"
}
}