forked from node-webrtc/node-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.94 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@cubbit/wrtc",
"description": "Fork of standards-compliant WebRTC implementation for Node",
"keywords": [
"webrtc",
"p2p",
"peer"
],
"version": "0.4.10",
"author": "Alan K <ack@modeswitch.org> (http://blog.modeswitch.org)",
"homepage": "https://github.com/cubbit/node-webrtc",
"bugs": "https://github.com/cubbit/node-webrtc/issues",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "http://github.com/cubbit/node-webrtc.git"
},
"main": "lib/index.js",
"browser": "lib/browser.js",
"binary": {
"module_name": "wrtc",
"module_path": "./build/{configuration}/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{platform}-{arch}.tar.gz",
"host": "https://cubbit.s3.eu-central-1.amazonaws.com"
},
"engines": {
"node": "^8.11.2 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.4",
"nan": "^2.3.2",
"node-addon-api": "^1.6.2",
"node-cmake": "2.3.2"
},
"optionalDependencies": {
"domexception": "^1.0.1"
},
"bundledDependencies": [
"@mapbox/node-pre-gyp"
],
"devDependencies": {
"@fidm/x509": "^1.2.1",
"aws-sdk": "^2.2.10",
"browserify-middleware": "^8.1.1",
"cross-env": "^5.1.4",
"eslint": "^4.14.0",
"express": "^4.16.2",
"js-yaml": "^3.13.0",
"jsdom": "^15.0.0",
"karma": "^4.0.1",
"karma-browserify": "^5.1.2",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-tap": "^4.1.4",
"karma-tap-pretty-reporter": "^4.1.0",
"minimatch": "^3.0.4",
"minimist": "1.2.5",
"mocha": "^5.2.0",
"mocha-sugar-free": "^1.4.0",
"node-fetch": "^2.5.0",
"q": "^1.5.1",
"recursive-copy": "^2.0.10",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"server-destroy": "^1.0.1",
"simple-peer": "~9.7.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"temp": "^0.9.0",
"travis-multirunner": "^4.3.0",
"ws": "^5.2.0"
},
"scripts": {
"install": "node scripts/download-prebuilt-or-build-from-source.js",
"install-example": "node scripts/install-example.js",
"lint": "eslint lib/*.js lib/**/*.js test/*.js test/**/*.js karma/*.js scripts/*.js",
"publish-binary": "node scripts/publish.js",
"test": "node --expose-gc test/all.js",
"test:browsers": "cross-env BROWSER=chrome node scripts/karma.js && cross-env BROWSER=firefox node scripts/karma.js",
"test:electron": "electron test/electron",
"wpt:init": "git submodule update --init --recursive",
"wpt:reset": "rimraf ./test/web-platform-tests/tests && npm run wpt:init",
"wpt:test": "mocha test/web-platform-tests/run-wpts.js --exit",
"wpt:update": "git submodule update --recursive --remote --force && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json"
}
}