-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
78 lines (78 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "zlux-server-framework",
"version": "0.0.0-zlux.version.replacement",
"description": "A Server for zLUX Plugins, Dataservices, and Proxying to other Servers.",
"license": "EPL-2.0",
"homepage": "zowe.org",
"repository": {
"type": "git",
"url": "https://github.com/zowe/zlux-server-framework.git"
},
"author": {
"name": "Fyodor Kovin",
"email": "[email protected]"
},
"contributors": [
{
"name": "Sean Grady",
"email": "[email protected]"
},
{
"name": "Leanid Astrakou",
"email": "[email protected]"
},
{
"name": "Tim Gerstel",
"email": "[email protected]"
},
{
"name": "Leonty Chudinov",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"test:storage": "mocha --timeout 10000 ./test/storage/*.js"
},
"dependencies": {
"@rocketsoftware/eureka-js-client": "~4.5.7",
"@rocketsoftware/express-ws": "^5.0.0",
"accept-language-parser": "~1.5.0",
"axios": "^1.7.7",
"bluebird": "3.7.2",
"body-parser": "~1.20.3",
"cookie-parser": "~1.4.6",
"diffie-hellman": "^5.0.3",
"express": "^4.21.2",
"express-session": "~1.18.0",
"express-static-gzip": "~2.1.7",
"graceful-fs": "~4.2.11",
"ipaddr.js": "~2.1.0",
"node-forge": "~1.3.1",
"normalize-url": "~7.0.0",
"require-from-string": "~2.0.2",
"semver": "~7.6.0",
"swagger-parser": "~10.0.3",
"ws": "^6.2.2",
"yaml": "~2.4.1",
"yauzl": "~3.1.2"
},
"devDependencies": {
"@types/connect": "3.4.35",
"@types/express": "4.17.17",
"@types/express-serve-static-core": "4.17.35",
"@types/mime": "3.0.1",
"@types/node": "~16.18.0",
"@types/qs": "6.9.3",
"chai": "~4.2.0",
"chai-http": "~4.2.0",
"mocha": "~10.2.0",
"typescript": "~5.0.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2",
"keyring_js": "~1.1.0"
}
}