-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 978 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 978 Bytes
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
{
"name": "node-turn",
"version": "0.0.6",
"description": "STUN/TURN Server",
"main": "./lib/server.js",
"types": "./lib/server.d.ts",
"scripts": {
"start": "node start",
"test": "nyc karma start",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"author": "Atlantis Software",
"license": "MIT",
"dependencies": {
"crc": "~4.1.0",
"js-yaml": "~4.1.0",
"log4js": "~6.4.3"
},
"devDependencies": {
"coveralls": "~3.1.1",
"eslint": "~8.11.0",
"karma": "~6.3.17",
"karma-chrome-launcher": "~3.1.1",
"karma-mocha": "~2.0.1",
"karma-mocha-reporter": "~2.2.5",
"mocha": "~9.2.2",
"nyc": "~15.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atlantis-Software/node-turn.git"
},
"bugs": {
"url": "https://github.com/Atlantis-Software/node-turn/issues"
},
"homepage": "https://github.com/Atlantis-Software/node-turn#readme"
}