-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "gx-it-proxy",
"version": "0.2.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": "vitest",
"lint": "eslint lib test",
"format": "prettier --no-config --write lib/*js test/*js",
"format-check": "prettier --no-config --check lib/*js test/*js"
},
"dependencies": {
"commander": "~13.0.0",
"eventemitter3": "5.0.1",
"http-proxy": "1.18.1",
"node-watch": "0.7.4",
"pg-native": "^3.2.0",
"sqlite3": "5.1.7"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"axios": "^1.7",
"axios-retry": "^4",
"eslint": "^9.17.0",
"eslint-config-strongloop": "^2.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
},
"overrides": {
"glob": "11.0.0",
"node-gyp": "10.3.1"
}
}