-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.78 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
59
60
{
"private": true,
"license": "MIT",
"name": "sturn.io",
"author": "snuggs",
"version": "0.1.0",
"description": "STUN/TURN server",
"main": "index.es",
"repository": {
"type": "git",
"url": "git+https://github.com/sneakyhead/sturn.io.git"
},
"engines": {
"node": "8.1.x"
},
"homepage": "https://github.com/sneakyhead/sturn.io#readme",
"keywords": [
"webrtc",
"stun",
"turn"
],
"bugs": {
"url": "https://github.com/sneakyhead/sturn.io/issues"
},
"scripts": {
"postinstall": "",
"start": "npm install && bin/serve",
"watch": "npm run watch/templates & npm run watch/styles & npm run watch/scripts & npm run watch/browser & wait",
"watch/browser": "npm run serve & browser-sync start --index template.html --proxy 'http://localhost:8080' --files public",
"watch/templates": "npm run templates -- --watch",
"test": "rollup --config rollup.spec.config.js --watch",
"templates": "pug $(find . -name '*.pug' -not -name '_*.pug' -not -path './node_modules/*' -not -path './**/_*.pug' -maxdepth 2) --out public",
"styles": "postcss --config style.es style.sss",
"watch/styles": "npm run styles -- --watch",
"scripts": "rollup --config rollup.config.js",
"watch/scripts": "npm run scripts -- --watch",
"ld+json": "cp broadcasts/*.ld.json public"
},
"dependencies": {
"@std/esm": "*",
"node-media-server": "^1.2.1",
"normalice": "^1.0.1",
"stun": "^1.0.2",
"websocket": "*"
},
"devDependencies": {
"tape": "*",
"browser-sync": "*",
"posthtml": "*",
"posthtml-include": "*",
"posthtml-sugarml": "*",
"pug": "*",
"pug-cli": "*",
"sugarss": "*",
"postcss-cli": "*",
"postcss-nested": "*",
"postcss-easy-import": "*",
"postcss-discard-comments": "*"
}
}