-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
64 lines (64 loc) · 1.23 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
{
"name": "global-tunnel-ng",
"version": "2.7.1",
"description": "Global HTTP & HTTPS tunneling",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/np-maintain/global-tunnel.git"
},
"engines": {
"node": ">=0.10 <11"
},
"dependencies": {
"encodeurl": "^1.0.2",
"lodash": "^4.17.10",
"npm-conf": "^1.1.3",
"proxy-from-env": "^1.1.0",
"tunnel": "^0.0.6"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-prettier": "^3.0.0",
"mocha": "^10.7.3",
"prettier": "^1.13.7",
"request": "^2.83.0",
"sinon": "^18.0.0"
},
"scripts": {
"test": "mocha test"
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"mocha": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"keywords": [
"http",
"https",
"tunnel",
"global"
],
"author": "GoInstant Inc., a salesforce.com company",
"license": "BSD-3-Clause"
}