-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 732 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 732 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
{
"name": "node-openvpn",
"version": "0.1.1",
"description": "Communicate with a openvpn instance via telnet",
"author": {
"name": "Luigi Poole",
"email": "luigipoole@outlook.com"
},
"files": [
"lib/**/*",
"index.js"
],
"keywords": [
"node openvpn",
"node vpn",
"openvpn client",
"openvpn",
"client",
"vpn",
"telnet"
],
"repository": {
"type": "git",
"url": "https://github.com/luigiplr/node-openvpn.git"
},
"main": "index.js",
"license": "GPL-3.0",
"dependencies": {
"bluebird": "^3.5.2",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"telnet-client": "VPNht/node-telnet-client"
},
"devDependencies": {
"minimist": "^1.2.0"
}
}