@nodertc/sctp
Version:
SCTP network protocol (RFC4960) in plain js
68 lines (67 loc) • 1.29 kB
JSON
{
"name": "@nodertc/sctp",
"version": "0.1.0",
"author": "Dmitry Tsvettsikh <me@reklatsmasters.com>",
"contributors": [
{
"name": "Vladimir Latyshev",
"email": "latysheff@gmail.com"
}
],
"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"
}
}