forked from rumaf/stun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.59 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
{
"name": "stun",
"version": "3.0.2",
"description": "Session Traversal Utilities for NAT (STUN) client and server.",
"main": "src/index.js",
"scripts": {
"lint": "npx eslint .",
"lint-fix": "npx eslint --fix .",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"test": "npx jest",
"versions": "npx dependency-version-checker check"
},
"bin": "./src/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/msimerson/stun.git"
},
"keywords": [
"webrtc",
"stun",
"rfc5389",
"5389",
"ice",
"turn"
],
"author": "Dmitry Tsvettsikh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/msimerson/stun/issues"
},
"homepage": "https://github.com/msimerson/stun#readme",
"devDependencies": {},
"dependencies": {
"binary-data": "^0.6.0",
"buffer-xor": "^2.0.2",
"debug": "^4.3.7",
"ipaddr.js": "^2.2.0",
"ip2buf": "^2.0.0",
"is-stun": "^2.0.0",
"minimist": "^1.2.8",
"turbo-crc32": "^1.0.1",
"universalify": "^2.0.1"
},
"engines": {
"node": ">=18.0"
},
"jest": {
"modulePaths": [
"<rootDir>",
"<rootDir>/src"
],
"testMatch": [
"**/test/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"coverageDirectory": "<rootDir>/coverage",
"collectCoverageFrom": [
"**/src/*.js",
"!**/src/cli.js",
"**/src/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest-cache"
}
}