-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.64 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
{
"name": "webrtc-socket",
"version": "0.2.4",
"description": "Uses Websockets to send WebRTC data to and from users",
"main": "./out/webRTC-Socket.js",
"scripts": {
"test": "echo running server tests... && cd test && ts-node ../node_modules/blue-tape/bin/blue-tape \"**/*.ts\" | tap-spec",
"start": "npm run build:live",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./webRTC-Socket.ts",
"build": "echo building... && typings bundle -o out/webRTC-Socket.d.ts",
"lint": "echo linting... && tslint \"**/*.ts\" -e \"source/**\" -e \"source-test/**\" -e \"out/**\" -e \"node_modules/**\" -e \"typings/**\"",
"browser-test": "echo running browser tests... && echo no browser test",
"source-test": "echo running source tests... && echo no source test",
"watch": "onchange -w \"**/*.ts\" -i -e \"out/**\" -- npm -s run build+test",
"types-publish": "npm -s run lint+build+test && echo please publish to typings/registry",
"all-tests": "npm test",
"build+test": "npm run build && npm run all-tests",
"lint+build+test": "npm run lint && npm run build+test",
"prepublish": "typings install"
},
"author": "CraigglesO",
"repository": {
"type": "git",
"url": "https://github.com/CraigglesO/webRTC-Socket.git"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^8.0.0",
"blue-tape": "^1.0.0",
"tap-spec": "^4.1.1",
"nodemon": "^1.11.0",
"ts-node": "^3.0.1",
"typescript": "^2.1.5",
"tslint": "^5.0.0",
"tslint-config-typings": "^0.3.1",
"onchange": "^3.2.1",
"typings": "^2.1.0"
},
"dependencies": {
"wrtc": "0.0.61",
"ws": "^3.0.0"
}
}