-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.8 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
{
"name": "WebRTC-Signaling-Service",
"version": "0.1.0",
"description": "WebRTC Signaling Service for SlideWik",
"repository": {
"type": "git",
"url": "https://github.com/slidewiki/WebRTC-Signaling-Service"
},
"bugs": "https://github.com/slidewiki/WebRTC-Signaling-Service/issues",
"author": "Roy Meissner (https://rmeissn.github.io/)",
"license": "MPL-2.0",
"main": "server.js",
"scripts": {
"clean": "rm -R ./node_modules/ ./coverage/",
"lint": "eslint -c .eslintrc \"./**/*.js\"",
"test": "NODE_ENV=test npm run test:unit && npm run test:integration",
"test:unit": "NODE_ENV=test mocha ./tests/unit_*.js",
"test:integration": "NODE_ENV=test mocha ./tests/integration_*.js",
"coverage": "istanbul cover _mocha --include-all-sources ./tests/*.js",
"coverall": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"countLOC": "sloc -f cli-table -k total,source,comment,empty -e node_modules\\|coverage ./",
"countLOC:details": "sloc -f cli-table -d -e node_modules\\|coverage ./",
"start:watch": "nodemon"
},
"dependencies": {
"boom": "^5.1.0",
"good": "^7.2.0",
"good-console": "^6.2.0",
"good-squeeze": "^5.0.0",
"hapi": "^16.5.2",
"hapi-swagger": "^7.6.0",
"inert": "^4.2.0",
"joi": "^10.6.0",
"lodash": "^4.17.4",
"node-static": "0.7.9",
"socket.io": "2.0.3",
"twitter": "^1.7.1",
"vision": "^4.1.0"
},
"engines": {
"node": ">=6.11.0"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.0.0",
"coveralls": "^2.13.0",
"eslint": "^4.0.0",
"eslint-plugin-promise": "^3.4.0",
"istanbul": "^0.4.0",
"mocha": "^3.4.0",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.0",
"sloc": "^0.2.0"
},
"pre-commit": [
"lint"
]
}