-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.66 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
{
"name": "socket-signal-websocket",
"version": "10.0.7",
"description": "socket-signal through simple-websocket",
"type": "module",
"exports": {
"node": "./src/index.js",
"default": "./src/client-browser.js"
},
"files": [
"src",
"bin"
],
"bin": {
"socket-signal-websocket": "bin/index.js"
},
"scripts": {
"start": "node index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests --forceExit --detectOpenHandles",
"posttest": "npm run lint",
"lint": "standard \"**/*.js\"",
"prepublishOnly": "npm test"
},
"dependencies": {
"delay": "^5.0.0",
"minimist": "^1.2.5",
"nanocustomassert": "^1.0.0",
"reconnecting-websocket": "^4.4.0",
"simple-websocket": "^9.0.0",
"socket-signal": "^10.3.2",
"ws": "^8.2.1"
},
"devDependencies": {
"enhanced-resolve": "^5.8.2",
"events.once": "^2.0.2",
"jest": "^27.0.4",
"standard": "^16.0.1",
"wrtc": "^0.4.4"
},
"jest": {
"resolver": "./tests/jest-resolver.cjs",
"testEnvironment": "jest-environment-node",
"transform": {},
"testMatch": [
"**/tests/**/*.test.js"
]
},
"standard": {
"env": [
"jest",
"node",
"browser"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/socket-signal-websocket.git"
},
"keywords": [
"socket-signal",
"webrtc",
"websocket"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/socket-signal-websocket/issues"
},
"homepage": "https://github.com/geut/socket-signal-websocket#readme"
}