-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.87 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
61
62
63
64
65
{
"name": "spray-wrtc",
"version": "3.0.0",
"author": "Chat-Wane <[email protected]>",
"description": "Adaptive random peer-sampling protocol running on top of WebRTC",
"main": "./lib/spray.js",
"repository": {
"type": "git",
"url": "https://github.com/ran3d/spray-wrtc"
},
"keywords": [
"Random peer-sampling",
"Adaptive",
"browser-to-browser communication",
"WebRTC"
],
"directories": {
"lib": "lib",
"bin": "bin"
},
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.10",
"n2n-wrtc": "git+https://github.com/ran3d/n2n-wrtc.git",
"short-uuid": "^3.0.1"
},
"bundledDependencies": [
"lodash",
"debug",
"n2n-wrtc"
],
"devDependencies": {
"chart.js": "^2.7.3",
"docma": "^2.1.0",
"p2p-graph": "^1.2.2",
"sigma": "^1.2.1",
"snazzy": "^7.1.1",
"standard": "*",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2"
},
"scripts": {
"all": "npm run lint && npm run build:debug && npm run build:prod && npm run doc:build",
"signaling": "node ./node_modules/n2n-wrtc/bin/signaling-server.js",
"build:dev": "webpack --watch --mode development --config ./configs/webpack-config.js",
"build:debug": "webpack --mode development --config ./configs/webpack-config.js",
"build:prod": "webpack --mode production --config ./configs/webpack-config-min.js",
"doc:build": "docma -c configs/docma.json",
"doc:dev": "docma -c configs/docma-local.json",
"doc:serve": "docma serve ./docs",
"lint": "standard --verbose \"./lib/**/*.js\" \"./examples/spray.js\" | snazzy",
"fix": "standard --fix --verbose \"./lib/**/*.js\" \"./examples/spray.js\" | snazzy",
"test": "npm run build:prod"
},
"license": "MIT",
"standard": {
"ignore": [
"/bin/",
"/img/",
"/examples/",
"/docs/"
]
}
}