-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "drs-server",
"version": "1.0.0",
"description": "Server to implement the GA4GH DRS (Data Repository Service) API.",
"main": "drs.js",
"directories": {
"lib": "lib",
"test": "test"
},
"homepage": "https://github.com/ihmpdcc/drs-server",
"bugs": {
"url": "https://github.com/ihmpdcc/drs-server/issues"
},
"dependencies": {
"async": "3.2.4",
"commander": "9.4.1",
"express": "4.18.2",
"inireader": "2.1.0",
"lodash": "4.17.21",
"log4js": "6.7.1",
"morgan": "1.10.0",
"mysql": "2.18.1",
"string-format": "2.0.0"
},
"devDependencies": {
"chai": "4.3.7",
"eslint": "8.29.0",
"mocha": "10.2.0"
},
"keywords": [
"rest",
"drs",
"hmpdacc",
"hmpdcc",
"ga4gh",
"science"
],
"repository": {
"type": "git",
"url": "https://github.com/ihmpdcc/drs-server.git"
},
"scripts": {
"test": "NODE_PATH=.:./lib mocha --timeout 10000 test/",
"eslint": "eslint -c ./.eslintrc.json --ignore-path ./.eslintignore .; exit 0"
},
"author": "igs-info@som.umaryland.edu",
"license": "MIT"
}