-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpackage.json
129 lines (129 loc) · 2.26 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "node-stun",
"version": "0.1.3",
"description": "STUN (Session Traversal Unitilities for NAT) for Node.js",
"main": "index.js",
"bin": {
"node-stun-server": "./bin/server.js",
"node-stun-client": "./bin/client.js"
},
"scripts": {
"test": "_mocha",
"posttest": "eslint lib test bin",
"lint": "eslint lib test bin"
},
"repository": {
"type": "git",
"url": "https://github.com/enobufs/stun.git"
},
"keywords": [
"STUN",
"NAT",
"WebRTC",
"ICE"
],
"author": "enobufs",
"license": "MIT",
"bugs": {
"url": "https://github.com/enobufs/stun/issues"
},
"homepage": "https://github.com/enobufs/stun",
"devDependencies": {
"eslint": "~6.8.0",
"mocha": "~7.1.1"
},
"dependencies": {
"commander": "~5.0.0",
"debug": "^4.1.1",
"ini": "^1.3.5",
"lodash": "^4.17.15"
},
"eslintConfig": {
"rules": {
"callback-return": [
2,
[
"callback",
"cb",
"next",
"done"
]
],
"camelcase": [
2,
{
"properties": "never"
}
],
"comma-spacing": [
2,
{
"before": false,
"after": true
}
],
"indent": [
2,
4,
{
"SwitchCase": 1
}
],
"linebreak-style": [
2,
"unix"
],
"max-len": [
1,
120,
4,
{
"ignoreComments": true,
"ignoreUrls": true
}
],
"no-console": 0,
"no-extra-boolean-cast": [
0
],
"no-new": 2,
"no-spaced-func": [
2
],
"no-trailing-spaces": [
2
],
"no-unused-vars": [
2,
{
"args": "all"
}
],
"no-use-before-define": [
2,
"nofunc"
],
"semi": [
2,
"always"
],
"space-after-keywords": [
2,
"always"
],
"space-before-function-paren": [
2,
{
"anonymous": "always",
"named": "never"
}
],
"space-return-throw-case": 2
},
"env": {
"node": true,
"mocha": true
},
"extends": "eslint:recommended"
}
}