-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
45 lines (45 loc) · 992 Bytes
/
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
{
"name": "easyvpn",
"version": "1.3.1",
"description": "Easy way to get a VPN connection.",
"main": "index.js",
"repository": "https://github.com/rodrigogs/easyvpn.git",
"author": "Rodrigo Gomes da Silva <[email protected]>",
"license": "BSD-2-Clause",
"preferGlobal": true,
"keywords": [
"connection",
"network",
"openvpn",
"auto",
"vpn",
"tunnel"
],
"scripts": {
"eslint": "eslint . --ext .js"
},
"dependencies": {
"bluebird": "^3.5.1",
"commander": "^2.12.2",
"csvtojson": "^1.1.9",
"execa": "^0.8.0",
"prompt": "^1.0.0",
"request": "^2.83.0",
"socks5-http-client": "^1.0.2",
"split": "^1.0.1",
"through2": "^2.0.3",
"which": "^1.3.0",
"winston": "^2.4.0"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
},
"bin": {
"easyvpn": "bin/easyvpn"
},
"engines": {
"node": ">=4.0.0"
}
}