-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 934 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 934 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
{
"name": "telnet-openvpn",
"version": "0.1.8",
"description": "Connect to OpenVPN management port through telnet.",
"main": "dist/index.js",
"scripts": {
"prepare": "babel src --out-dir dist",
"prepublish": "npm run prepare",
"test": "babel-node test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/smithp1992/telnet-openvpn.git"
},
"keywords": [
"Telnet",
"OpenVPN"
],
"author": {
"name": "Philip Smith",
"email": "smithp1992@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/smithp1992/telnet-openvpn/issues"
},
"homepage": "https://github.com/smithp1992/telnet-openvpn#readme",
"dependencies": {
"lodash": "^4.17.11",
"q": "^1.5.1",
"telnet-client": "^0.16.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.7.0"
},
"babel": {
"presets": [
"env"
]
}
}