-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "@socket.io/admin-ui",
"version": "0.5.1",
"description": "Admin UI for Socket.IO",
"files": [
"dist/",
"ui/dist/"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"compile": "tsc",
"test": "npm run format:check && npm run compile && npm run test:unit",
"test:unit": "nyc mocha --require ts-node/register --timeout 5000 test/*.ts --quit",
"format:check": "prettier --parser typescript --check 'lib/**/*.ts' 'test/**/*.ts'",
"format:fix": "prettier --parser typescript --write 'lib/**/*.ts' 'test/**/*.ts'",
"prepack": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socketio/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": {
"@types/bcryptjs": "^2.4.2",
"bcryptjs": "^2.4.3",
"debug": "^4.3.4"
},
"peerDependencies": {
"socket.io": ">=3.1.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^10.0.0",
"@types/node": "^14.14.37",
"@types/redis": "^2.8.28",
"expect.js": "^0.3.1",
"ioredis": "^5.3.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"redis": "^3.1.2",
"redis-v4": "npm:redis@^4.6.5",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"socket.io-v3": "npm:socket.io@^3.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.2.3"
}
}