forked from socketio/socket.io-admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@moonrailgun/socket.io-admin-ui",
"version": "0.2.1",
"description": "Admin UI for Socket.IO",
"files": [
"dist/",
"ui/dist/"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npm run format:check && tsc && nyc mocha --require ts-node/register --timeout 5000 test/index.ts",
"format:check": "prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.ts'",
"format:fix": "prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.ts'",
"prepack": "tsc",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "[email protected]:msgbyte/socket.io-admin-ui.git"
},
"keywords": [
"socket.io",
"admin",
"websocket"
],
"author": "Damien Arrachequesne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/socketio/socket.io-admin-ui/issues"
},
"homepage": "https://github.com/socketio/socket.io-admin-ui#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"debug": "~4.3.1"
},
"peerDependencies": {
"socket.io": ">=3.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/debug": "^4.1.5",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/redis": "^2.8.28",
"@types/socket.io": "^2.1.13",
"expect.js": "^0.3.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"redis": "^3.0.2",
"socket.io": "^4.1.2",
"socket.io-client": "^4.0.1",
"socket.io-v3": "npm:socket.io@^3.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}