-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "tman-wrtc",
"version": "1.0.0",
"author": "Chat-Wane <[email protected]>",
"description": "Peer-sampling protocol running on top of WebRTC that builds network topologies using ranking functions",
"main": "./lib/tman.js",
"repository": {
"type": "git",
"url": "https://github.com/ran3d/tman-wrtc"
},
"keywords": [
"Peer-sampling protocol",
"Topology",
"browser-to-browser communication",
"WebRTC"
],
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.10",
"lodash.isempty": "^4.4.0",
"n2n-overlay-wrtc": "^2.0.10",
"unicast-definition": "^2.0.2"
},
"bundledDependencies": [
"lodash",
"lodash.isempty",
"debug",
"n2n-overlay-wrtc",
"unicast-definition"
],
"devDependencies": {
"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",
"p2p-graph": "^1.2.2",
"snazzy": "^7.1.1",
"spray-wrtc": "^2.0.11",
"standard": "^11.0.1"
},
"scripts": {
"lint": "standard --verbose \"./lib/**/*.js\" | snazzy",
"fix": "standard --fix \"./lib/**/*.js\" | snazzy",
"debug": "browserify -r ./lib/tman.js:tman-wrtc --debug > build/tman-wrtc.bundle.debug.js",
"build": "browserify -r ./lib/tman.js:tman-wrtc > build/tman-wrtc.bundle.js",
"esdoc": "esdoc && npm run esdoc:example",
"esdoc:example": "cp -R ./build ./examples ./img ./docs",
"test": "npm run all",
"all": "npm run lint && npm run debug && npm run build && npm run esdoc"
},
"license": "MIT",
"standard": {
"ignore": [
"build/**",
"examples/**",
"img/**"
]
}
}