voxgig/seneca-monitor

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "seneca-monitor",
  "version": "0.7.0",
  "description": "seneca-monitor",
  "main": "monitor.js",
  "scripts": {
    "test": "lab -v -P test -t 75 -L -r console -o stdout -r html -o test/coverage.html",
    "coveralls": "lab -s -P test -r lcov | coveralls",
    "coverage": "lab -v -P test -L -t 75 -r html > docs/coverage.html",
    "prettier": "prettier --write --no-semi --single-quote monitor.js test/*.js",
    "clean": "rm -rf node_modules package-lock.json yarn.lock",
    "reset": "npm run clean && npm i && npm test",
    "repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
    "repo-publish": "npm run clean && npm i --registry http://registry.npmjs.org && npm run repo-publish-quick",
    "repo-publish-quick": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=http://registry.npmjs.org"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rjrodger/seneca-monitor.git"
  },
  "keywords": [
    "seneca",
    "microservice",
    "monitor"
  ],
  "author": "Richard Rodger richardrodger.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rjrodger/seneca-monitor/issues"
  },
  "homepage": "https://github.com/rjrodger/seneca-monitor#readme",
  "devDependencies": {
    "@hapi/code": "^8.0.1",
    "@hapi/lab": "^22.0.4",
    "@seneca/repl": "^2.2.0",
    "coveralls": "^3.1.0",
    "prettier": "^2.0.5",
    "seneca": "^3.21.0"
  },
  "dependencies": {
    "@hapi/hapi": "^19.1.1",
    "@hapi/inert": "^6.0.1"
  },
  "files": [
    "LICENSE",
    "README.md",
    "monitor.js",
    "www"
  ],
  "engines": {
    "node": ">=12"
  }
}