-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "@nodertc/ice",
"version": "0.0.0",
"description": "Interactive Connectivity Establishment Protocol",
"main": "src/index.js",
"scripts": {
"test": "npx eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodertc/ice.git"
},
"keywords": [
"nodertc",
"ice",
"webrtc",
"nat",
"rfc8445",
"stun"
],
"author": "Dmitriy Tsvettsikh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodertc/ice/issues"
},
"engines": {
"node": ">=8.3"
},
"files": [
"src"
],
"homepage": "https://github.com/nodertc/ice#readme",
"devDependencies": {
"@nodertc/eslint-config": "^0.3.0",
"@types/node": "^12.6.3",
"eslint": "^5.16.0",
"jest": "^23.6.0",
"prettier": "^1.18.2"
},
"dependencies": {
"array-flatten": "^2.1.2",
"is-stun": "^2.0.0",
"readable-stream": "^3.4.0",
"stun": "^2.0.0",
"timeout-refresh": "^1.0.0",
"turbo-crc32": "^1.0.1"
},
"eslintConfig": {
"extends": "@nodertc"
}
}