rexuws
Version:
An express-like framework built on top of uWebsocket.js aims at simple codebase and high performance
84 lines (83 loc) • 2.43 kB
JSON
{
"name": "rexuws",
"version": "1.1.4",
"description": "An express-like framework built on top of uWebsocket.js aims at simple codebase and high performance",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "NODE_ENV=test mocha -r ts-node/register 'tests/**/*.spec.ts'",
"build": "rm -rf build && tsc --project tsconfig.production.json",
"prepare": "npm run build",
"prePublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rexuws/rexuws.git"
},
"keywords": [
"nodejs",
"uwebsocketsjs",
"uws",
"express",
"framework",
"js",
"typescript"
],
"author": "VMTran",
"license": "ISC",
"bugs": {
"url": "https://github.com/rexuws/rexuws/issues"
},
"homepage": "https://github.com/rexuws/rexuws#readme",
"devDependencies": {
"@types/accepts": "^1.3.5",
"@types/chai": "^4.2.15",
"@types/chai-http": "^4.2.0",
"@types/content-disposition": "^0.5.3",
"@types/content-type": "^1.1.3",
"@types/cookie": "^0.4.0",
"@types/mime-types": "^2.1.0",
"@types/mmmagic": "^0.4.30",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.17",
"@types/qs": "^6.9.5",
"@types/statuses": "^2.0.0",
"@types/supertest": "^2.0.10",
"@types/type-is": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"chai": "^4.3.3",
"chai-http": "git+https://github.com/chaijs/chai-http.git",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.0",
"mocha": "^8.3.1",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"accepts": "^1.3.7",
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"content-disposition": "^0.5.3",
"content-type": "^1.0.4",
"cookie": "^0.4.1",
"mime-types": "^2.1.27",
"mmmagic": "^0.5.3",
"qs": "^6.9.4",
"statuses": "^2.0.0",
"type-is": "^1.6.18",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v18.14.0"
},
"files": [
"build/**/*"
]
}