forked from Atlantis-Software/node-turn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1010 Bytes
/
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
{
"name": "node-turn",
"version": "0.0.4",
"description": "STUN/TURN Server",
"main": "./lib/server.js",
"scripts": {
"start": "node start",
"test": "nyc karma start",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"author": "Atlantis Software",
"license": "MIT",
"dependencies": {
"crc": "^3.8.0",
"js-yaml": "~3.12.0",
"log4js": "~3.0.5"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "~5.6.0",
"istanbul": "0.4.5",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "~1.3.0",
"karma-mocha-reporter": "~2.2.5",
"mocha": "~5.2.0",
"nyc": "~13.0.1"
},
"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"
}