-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.98 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
{
"name": "n2n-overlay-wrtc",
"version": "2.0.10",
"description": "A WebRTC peer is able to mediate the connection establishment between its neighbors, i.e., it becomes a signaling server for its neighbors. It allows peers to organize their overlay network.",
"main": "lib/n2n-overlay.js",
"repository": {
"type": "git",
"url": "https://github.com/ran3d/n2n-overlay-wrtc"
},
"keywords": [
"WebRTC",
"browser-to-browser communication",
"overlay network",
"distributed signaling server"
],
"author": "Chat-Wane",
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.10",
"neighborhood-wrtc": "^3.0.0",
"uuid": "^3.2.1"
},
"bundledDependencies": [
"neighborhood-wrtc",
"lodash",
"uuid",
"debug"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-node": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"scripts": {
"lint": "standard \"./lib/**/*.js\" \"./example/*.js\" --verbose | snazzy",
"fix": "standard --fix --verbose \"./example/*.js\" \"./lib/**/*.js\" | snazzy ",
"esdoc": "esdoc && npm run esdoc:example",
"esdoc:example": "cp -R ./build ./example ./img ./docs",
"test": "npm run all",
"all": "npm run lint && npm run all:build && npm run esdoc",
"debug": "browserify -r ./lib/n2n-overlay.js:n2n-overlay-wrtc -t [ babelify --presets [ env ] ] --debug > build/n2n-overlay-wrtc.bundle.debug.js",
"build": "browserify -r ./lib/n2n-overlay.js:n2n-overlay-wrtc -t [ babelify --presets [ env ] ] > build/n2n-overlay-wrtc.bundle.js",
"all:build": "npm run build && npm run debug"
}
}