-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.41 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
{
"name": "sharifyr_server_router",
"version": "0.0.1",
"description": "websocket and webrtc router for broadcasting contact statuses and bootstrapping peer connections",
"main": "index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"lint": "tslint --force 'src/**/*.ts' > ./tslint.err",
"local": "nodemon -e ts -w ./src -x npm run local:watch",
"local:watch": "npm run build && npm run lint && cat ./tslint.err && npm run build && node --inspect ./dist/src/index.js",
"start": "npm run build && npm run lint && node ./dist/index.js",
"test": "set NODE_ENV=TEST && nyc --extension .ts --extension .tsx mocha --timeout 10000 -r ts-node/register ./test/*.ts && nyc report --reporter text-lcov --extension .ts --extension .tsx | coveralls",
"test-watch": "npm run clean && mocha-typescript-watch -p tsconfig.json -o ./mocha.opts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharifyr/server-router.git"
},
"author": "Kyle Galvin",
"license": "ISC",
"bugs": {
"url": "https://github.com/sharifyr/server-router/issues"
},
"homepage": "https://github.com/sharifyr/server-router#readme",
"devDependencies": {
"@types/node": "^10.0.6",
"rimraf": "^2.6.2"
},
"dependencies": {
"@types/websocket": "0.0.39",
"ts-node": "^5.0.1",
"tslint": "^5.8.0",
"typescript": "^2.7.2",
"websocket": "^1.0.26"
}
}