@hawtio/backend-middleware
Version:
An Express middleware that implements Hawtio backend
62 lines (61 loc) • 1.61 kB
JSON
{
"name": "@hawtio/backend-middleware",
"version": "1.0.6",
"description": "An Express middleware that implements Hawtio backend",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"author": "Hawtio developer team",
"license": "Apache-2.0",
"files": [
"build/main/*",
"build/module/*",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/hawtio/hawtio-next.git"
},
"keywords": [
"hawtio",
"express",
"middleware"
],
"scripts": {
"start": "yarn build && node example.mjs",
"build": "concurrently \"npm:build:*(!watch)\"",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build:watch": "tsc -p tsconfig.json -w",
"test": "jest",
"release": "commit-and-tag-version --path . --tag-prefix backend-middleware-v --releaseCommitMessageFormat \"chore(release): ${npm_package_name} v{{currentTag}}\"",
"prepack": "yarn build"
},
"dependencies": {
"@bitauth/libauth": "^3.0.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"axios": "^1.7.7",
"express": "^4.21.1",
"js-logger": "^1.6.1"
},
"devDependencies": {
"commit-and-tag-version": "^12.5.0",
"concurrently": "^9.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}