-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "webrtc-signaling-server",
"version": "1.0.0",
"description": "webrtc nodejs signaling server",
"main": "app.js",
"scripts": {
"dev": "nodemon index.js --exec babel-node",
"clean": "rimraf dist/",
"build": "npm run clean && babel system -d dist/system && babel server -d dist/server && babel index.js -d dist && babel config.js -d dist && babel ssl --out-dir dist/ssl --copy-files",
"prod": "node dist/index.js",
"server-test": "mocha test/server-test --require babel-register",
"system-test": "mocha test/system-test --require babel-register",
"signaling-test": "mocha test/signaling-test --require babel-register",
"load-test": "artillery.cmd run ./test/load-test/load.json"
},
"repository": {
"type": "git",
"url": "https://github.com/delbertvibes/webrtc-signaling-server.git"
},
"keywords": [
"nodejs",
"signaling"
],
"author": "delbertvibes@gmail.com",
"license": "ISC",
"dependencies": {
"cluster": "^0.7.7",
"debug": "^3.2.6",
"fs": "0.0.1-security",
"https": "^1.0.0",
"npm": "^6.4.1",
"path": "^0.12.7",
"to": "^0.2.9",
"update": "^0.7.4",
"ws": "^6.1.0"
},
"devDependencies": {
"artillery": "^1.6.0-26",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"coffeescript": "^2.3.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.5",
"rimraf": "^2.6.2",
"superagent": "^3.8.3"
}
}