-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "wire.io",
"version": "3.3.3",
"description": "Socket.io wrapper to enable client to client communications like RPC and pub/sub. Inspired by WAMP protocol.",
"main": "./src/index.js",
"type": "module",
"exports": {
".": "./src/index.js",
"./client": "./src/client.js",
"./server": "./src/server.js",
"./package.json": "./package.json"
},
"browser": "./src/index.js",
"keywords": [
"socket",
"client",
"realtime"
],
"author": "Jérémie Pardou",
"license": "ISC",
"bin": {
"wire": "src/cli.js",
"wire.io": "src/cli.js"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --detectOpenHandles ",
"dev": "nodemon src/cli.js",
"start": "node src/cli.js",
"ci": "start-server-and-test start http-get://localhost:4000 coverage",
"version": "git changelog -n -t $npm_package_version && git add CHANGELOG.md"
},
"dependencies": {
"nanoid": "^4.0.0"
},
"devDependencies": {
"jest": "^26.6.3",
"jest-esm-transformer": "^1.0.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"retry-assert": "^1.0.0",
"start-server-and-test": "^1.12.0"
},
"peerDependencies": {
"cors": "~2.8.5",
"dotenv": "~10.0.0",
"express": "~4.17.1",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4"
}
}