-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
66
67
68
69
{
"name": "n2n-wrtc",
"version": "0.0.0",
"description": "Easy primitives for building/managing networks of WebRTC, Bluetooth, etc..., connections. With external and internal signaling services. ",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "tests",
"bin": "bin"
},
"scripts": {
"signaling": "node bin/signaling-server.js",
"test": "npm run mocha",
"lint": "standard --verbose \"./lib/**/*.js\" \"./tests/**/*.js\" | snazzy",
"fix": "standard --fix --verbose \"./lib/**/*.js\" \"./tests/**/*.js\" | snazzy",
"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",
"mocha": "mocha tests/**/*-test.js --exit",
"all": "npm run build:debug && npm run build:prod && npm run doc:build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ran3d/n2n-wrtc.git"
},
"keywords": [
"browser-to-browser",
"webrtc",
"bluetooth",
"wrapper",
"overlay",
"networks"
],
"author": "GRALL Arnaud",
"license": "MIT",
"bugs": {
"url": "https://github.com/ran3d/n2n-wrtc/issues"
},
"homepage": "https://github.com/ran3d/n2n-wrtc#readme",
"devDependencies": {
"docma": "^3.2.2",
"mocha": "^6.1.4",
"sigma": "^1.2.1",
"snazzy": "^8.0.0",
"source-map-loader": "^0.2.4",
"standard": "^12.0.1",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"debug": "^4.1.1",
"express": "^4.17.1",
"lodash.find": "^4.6.0",
"lodash.merge": "^4.6.1",
"object-sizeof": "^1.4.0",
"short-uuid": "^3.1.1",
"simple-peer": "^9.4.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"standard": {
"env": [
"mocha"
]
}
}