60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@socket.io/admin-ui",
|
|
"version": "0.5.0",
|
|
"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/index.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 <damien.arrachequesne@gmail.com>",
|
|
"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.1"
|
|
},
|
|
"peerDependencies": {
|
|
"socket.io": ">=3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@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",
|
|
"expect.js": "^0.3.1",
|
|
"mocha": "^9.2.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"
|
|
}
|
|
}
|