-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 KB
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": "paxdb-orthology",
"version": "4.1.0",
"private": false,
"description": "pax-db.org orthology service",
"author": "Milan Simonovic <milan.simonovic@imls.uzh.ch>",
"license": "MIT",
"main": "lib/storage.js",
"keywords": [
"paxdb",
"pax-db",
"pax-db.org",
"protein",
"orthologs"
],
"repository": {
"type": "git",
"url": "https://github.com/meringlab/paxdb-orthology"
},
"bugs": {
"url": "https://github.com/meringlab/paxdb-orthology/issues"
},
"scripts": {
"index": "node ./bin/index",
"start": "node ./bin/www",
"lint": "./node_modules/eslint/bin/eslint.js lib/ bin/* routes/*",
"test": "mocha test/*.js",
"integration-test-storage": "mocha integration_test/storage.js",
"integration-test-front": "mocha integration_test/app.js"
},
"dependencies": {
"bunyan": "~1.8",
"debug": "~2.6",
"ejs": "~2.6.1",
"express": "~4.13.0",
"express-negotiate": "0.0.5",
"glob": "~7.1",
"seraph": "~0.15",
"serve-favicon": "~2.5.0",
"underscore": "~1.8",
"when": "~3.7"
},
"devDependencies": {
"chai": "*",
"disposable-seraph": "~0.5",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"mocha": "*",
"superagent": "~1.2"
},
"engines": {
"node": "8.x"
}
}