-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.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
{
"name": "@nodertc/sctp",
"version": "0.1.0",
"author": "Dmitry Tsvettsikh <[email protected]>",
"contributors": [
{
"name": "Vladimir Latyshev",
"email": "[email protected]"
}
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"debug": "^3.1.0",
"ip": "^1.1.5",
"turbo-crc32": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.16.0",
"mocha": "^5.0.0",
"supports-color": "^5.1.0",
"xo": "^0.18.2"
},
"description": "SCTP network protocol (RFC4960) in plain js",
"keywords": [
"RFC4960",
"SCTP",
"Sigtran",
"SS7",
"RFC8261",
"DTLS",
"WebRTC"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodertc/sctp/issues"
},
"homepage": "https://github.com/nodertc/sctp#readme",
"main": "lib/index.js",
"scripts": {
"test": "xo && mocha"
},
"xo": {
"space": true,
"semicolon": false,
"extends": ".eslintrc",
"overrides": [
{
"files": "test/*.js",
"rules": {
"max-len": [
"error",
{
"code": 300
}
]
}
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodertc/sctp.git"
}
}