express-msgpack
Version:
Transparent MessagePack middleware for Express
88 lines (87 loc) • 2.25 kB
JSON
{
"name": "express-msgpack",
"version": "6.0.0",
"description": "Transparent MessagePack middleware for Express",
"main": "dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js"
},
"types": "dist/esm/index.d.ts",
"type": "module",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf dist/*",
"build": "npm run build:esm && npm run build:cjs",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"postbuild:cjs": "mv dist/cjs/index.js dist/cjs/index.cjs",
"build:esm": "tsc --project ./tsconfig.esm.json",
"e2e": "node ./bin/smoke.js --local",
"lint": "eslint .",
"ship": "npm run lint && npm test && npm run e2e",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textbook/express-msgpack.git"
},
"keywords": [
"express",
"middleware",
"messagepack",
"msgpack",
"json",
"typescript"
],
"author": "Jonathan Sharpe <mail@jonrshar.pe>",
"contributors": [
"Alan Dzday <dzday@web.de>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/textbook/express-msgpack/issues"
},
"homepage": "https://github.com/textbook/express-msgpack#readme",
"funding": "https://ko-fi.com/textbook",
"optionalDependencies": {
"@msgpack/msgpack": "^2.8.0"
},
"peerDependencies": {
"express": "^4.17.1 || ^5"
},
"devDependencies": {
"@codeyourfuture/eslint-config-standard": "^7.0.0",
"@msgpack/msgpack": "^3.1.2",
"@tsconfig/node20": "^20.1.8",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.25",
"@types/supertest": "^6.0.3",
"eslint": "^9.39.1",
"eslint-plugin-jest": "^29.2.0",
"express": "^5.1.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"rimraf": "^6.1.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"dependencies": {
"raw-body": "^3.0.2"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/smoke"
],
"preset": "ts-jest",
"testEnvironment": "node"
},
"engines": {
"node": ">=20.12.0"
}
}