expressmultithread
Version:
Fast, light-weight and low dependency [Express.js](https://www.npmjs.com/package/express) multithreaded router.
56 lines (55 loc) • 1.67 kB
JSON
{
"name": "expressmultithread",
"version": "1.2.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"test": "jest --config jest.config.ts",
"reinstall": "rimraf ./node_modules && npm ci",
"pre-publish": "npm run reinstall && npm run test && npm run build",
"publish:patch": "npm run pre-publish && npm version patch && git push && npm publish && npm run clean",
"publish:minor": "npm run pre-publish && npm version minor && git push && npm publish && npm run clean",
"publish:major": "npm run pre-publish && npm version major && git push && npm publish && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trackap/ExpressMultithread.git"
},
"keywords": [
"Express",
"Multithread",
"Decorators",
"Typescript"
],
"author": "mderoulou",
"license": "MIT",
"bugs": {
"url": "https://github.com/Trackap/ExpressMultithread/issues"
},
"homepage": "https://github.com/Trackap/ExpressMultithread#readme",
"dependencies": {
"express": "^4.18.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/supertest": "^2.0.12",
"chai": "^4.3.7",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
}
}