senecajs/seneca-entity

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "seneca-entity",
  "main": "dist/entity.js",
  "version": "26.0.2",
  "type": "commonjs",
  "types": "dist/entity.d.ts",
  "description": "Entity plugin for seneca",
  "keywords": [
    "seneca",
    "entity",
    "plugin"
  ],
  "license": "MIT",
  "homepage": "http://senecajs.org",
  "author": "Richard Rodger (http://richardrodger.com/)",
  "contributors": [
    "Richard Rodger (https://github.com/rjrodger)",
    "Mihai Dima (https://github.com/mihaidma)",
    "Dean McDonnell (https://github.com/mcdonnelldean)",
    "Wyatt Preul (https://github.com/geek)",
    "Shane Lacey (https://github.com/shanel262)",
    "Emer Rutherford (https://github.com/eeswr)",
    "Nicolás Fantone (https://github.com/nfantone)",
    "Leonardo Cunha (https://github.com/LeonNimoy)"
  ],
  "files": [
    "LICENSE",
    "README.md",
    "src",
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/senecajs/seneca-entity.git"
  },
  "scripts": {
    "test": "jest --coverage",
    "test-some": "jest -t",
    "test-watch": "jest --coverage --watchAll",
    "watch": "tsc -w -d",
    "build": "tsc -d",
    "prettier": "prettier --write --no-semi --single-quote src/**/*.ts test/*.js",
    "reset": "npm run clean && npm i && npm run build && npm test",
    "clean": "rm -rf node_modules dist 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=https://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"
  },
  "engines": {
    "node": ">=16"
  },
  "dependencies": {
    "seneca-mem-store": "^9.0.0"
  },
  "peerDependencies": {
    "seneca": ">=3||>=4.0.0-rc2",
    "seneca-promisify": ">=3"
  },
  "devDependencies": {
    "@seneca/maintain": "^0.1.0",
    "@types/jest": "^29.5.12",
    "esbuild": "^0.21.5",
    "esbuild-jest": "^0.5.0",
    "jest": "^29.7.0",
    "prettier": "^3.3.1",
    "seneca-msg-test": "^4.1.0",
    "typescript": "^5.4.5"
  }
}