-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 963 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 963 Bytes
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
{
"name": "node-vspc",
"version": "1.0.2",
"main": "server.js",
"license": "MIT",
"author": "Jingshao Chen",
"scripts": {
"test": "jest",
"start": "node server.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"bluebird": "^3.7.2",
"redis": "^4.1.0",
"winston": "^3.7.2"
},
"devDependencies": {
"snyk": "^1.931.0",
"eslint": "^8.15.0",
"jest": "^28.1.0"
},
"description": "Nodejs based VMWare VM serial console vSPC Proxy Server",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaozi/node-vspc.git"
},
"keywords": [
"VMWare",
"Telnet",
"Serial",
"Console",
"VSPC",
"Nodejs",
"Proxy"
],
"bugs": {
"url": "https://github.com/shaozi/node-vspc/issues"
},
"homepage": "https://github.com/shaozi/node-vspc#readme",
"snyk": true
}