senecajs/seneca-repl

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@seneca/repl",
  "description": "Provides a client and server REPL for Seneca microservice systems.",
  "version": "9.1.0",
  "main": "dist/repl.js",
  "license": "MIT",
  "author": "Richard Rodger (https://github.com/rjrodger)",
  "contributors": [
    "Mihai Dima (https://github.com/mihaidma)",
    "Emer Rutherford (https://github.com/eeswr)",
    "Richard Rodger (https://github.com/rjrodger)",
    "Wyatt Preul (https://github.com/geek)",
    "Shane Lacey (https://github.com/shanel262)",
    "Dean McDonnell (https://github.com/mcdonnelldean)"
  ],
  "bin": {
    "seneca-repl": "./bin/seneca-repl-exec.js"
  },
  "scripts": {
    "build": "tsc -d",
    "watch": "tsc -w -d",
    "test": "jest --coverage",
    "test-some": "jest -t",
    "test-watch": "jest --coverage --watchAll",
    "smoke": "node test/smoke.js",
    "smoke-repl": "node ./bin/seneca-repl-exec.js",
    "prettier": "prettier --write --no-semi --single-quote bin/*.js src/*.ts test/*.js",
    "doc": "seneca-doc",
    "reset": "npm run clean && npm i && npm run build && npm test",
    "clean": "rm -rf dist node_modules package-lock.json yarn.lock",
    "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 run build && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org"
  },
  "keywords": [
    "seneca",
    "plugin",
    "repl"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/senecajs/seneca-repl.git"
  },
  "dependencies": {
    "@hapi/hoek": "^11.0.4",
    "inks": "^3.0.1",
    "json-stringify-safe": "^5.0.1",
    "terser": "^5.31.1"
  },
  "devDependencies": {
    "@aws-sdk/client-lambda": "^3.592.0",
    "@seneca/entity-util": "^3.1.1",
    "@seneca/gateway-auth": "^1.1.0",
    "@seneca/maintain": "^0.1.0",
    "@seneca/owner": "^6.2.0",
    "@seneca/user": "^6.4.0",
    "@types/json-stringify-safe": "^5.0.3",
    "jest": "^29.7.0",
    "prettier": "^3.3.1",
    "seneca": "^3.37.0",
    "seneca-doc": "^2.1.3",
    "seneca-entity": "^26.0.2",
    "seneca-mem-store": "^9.0.0",
    "seneca-promisify": "^3.7.2",
    "typescript": "5.4.5"
  },
  "files": [
    "LICENSE",
    "README.md",
    "dist",
    "bin"
  ]
}