-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "gx-it-proxy",
"version": "0.1.0",
"description": "A dynamic reverse proxy for Interactive Tools in Galaxy",
"main": "lib/main.js",
"bin": {
"gx-it-proxy": "lib/main.js",
"gx-it-proxy-create-db": "lib/createdb.js"
},
"keywords": [
"galaxy",
"proxy"
],
"author": "Galaxy Project",
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/usegalaxy-eu/gie-nodejs-proxy"
},
"scripts": {
"test": "mocha --reporter spec",
"lint": "eslint lib test",
"format": "prettier --write lib/*js test/*js",
"format-check": "prettier --check lib/*js test/*js"
},
"dependencies": {
"commander": "~2.19.0",
"eventemitter3": "3.1.0",
"http-proxy": "1.18.1",
"node-watch": "0.6.2",
"pg-native": "^3.1.0",
"sqlite3": "5.1.2"
},
"devDependencies": {
"axios": "^1.7",
"axios-retry": "^3",
"chai": "^4",
"eslint": "^8.3.0",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^10.4",
"prettier": "^3.0.3"
}
}