-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.52 KB
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
{
"name": "socket.io-valkey-emitter",
"version": "0.1.0",
"description": "The Socket.IO Valkey emitter, allowing to communicate with a group of Socket.IO servers from another Node.js process",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webdevelopersrinu/socket.io-valkey-emitter.git"
},
"bugs": {
"url": "https://github.com/webdevelopersrinu/socket.io-valkey-emitter/issues"
},
"files": [
"dist/"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"compile": "rimraf ./dist && tsc",
"test": "rimraf ./build && tsc -p tsconfig.test.json && mocha build/test/index.js --timeout 5000 --exit",
"format:check": "prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.ts'",
"format:fix": "prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.ts'",
"prepack": "npm run compile"
},
"keywords": [
"socket.io",
"valkey",
"emitter",
"pubsub",
"websocket",
"iovalkey"
],
"author": "Srinu Desetti",
"dependencies": {
"debug": "~4.3.1",
"notepack.io": "~3.0.1",
"socket.io-parser": "~4.2.1"
},
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"expect.js": "~0.3.1",
"iovalkey": "^0.3.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^5.0.5",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"socket.io-valkey-adapter": "^0.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}