senecajs/seneca-user

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@seneca/user",
  "description": "User management plugin for Seneca",
  "version": "6.4.0",
  "keywords": [
    "seneca",
    "user",
    "plugin"
  ],
  "author": {
    "name": "Richard Rodger",
    "email": "richard@voxgig.com",
    "url": "http://richardrodger.com/"
  },
  "license": "MIT",
  "main": "user.js",
  "scripts": {
    "test": "lab -v -L  -t 90 -P test -I AggregateError,atob,btoa,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance -r console -o stdout -r html -o test/coverage.html",
    "test-some": "lab -v -L -P test -g",
    "test-msgs": "lab -t 90 --coverage-exclude lib/hasher.js -P messages.test -r console -o stdout -r html -o test/coverage.html",
    "doc": "seneca-doc",
    "coveralls": "lab -s -P test -I AggregateError,atob,btoa,DOMException,AbortController,AbortSignal,EventTarget,Event,MessageChannel,MessagePort,MessageEvent,performance,structuredClone -r lcov > ./coverage/lcov.info",
    "prettier": "prettier --write --no-semi --single-quote *.js lib/*.js test/*.js",
    "reset": "npm run clean && npm i && npm test",
    "clean": "rm -rf 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-quick": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=https://registry.npmjs.org",
    "repo-publish": "npm run clean && npm i --registry=https://registry.npmjs.org && npm run repo-publish-quick"
  },
  "files": [
    "LICENSE",
    "README.md",
    "user.js",
    "user-docs.js",
    "lib"
  ],
  "contributors": [
    "Mircea Alexandru <mircea.alexandru@gmail.com> (http://www.alexandrumircea.ro)",
    "Cristian Kiss <kissdevel@gmail.com> (https://github.com/ckiss)",
    "Mihai Dima <mihaizn@gmail.com> (https://github.com/mihaidma)",
    "Adrien Becchis (https://github.com/AdrieanKhisbe)",
    "Shane Lacey (https://github.com/shanel262)",
    "Otávio Augusto Soares (https://github.com/otaviosoares)",
    "Dean McDonnell (https://github.com/mcdonnelldean)",
    "Nicolas Herment (https://github.com/nherment)",
    "Paolo Chiodi (https://github.com/paolochiodi)",
    "Emer Rutherford (https://github.com/eeswr)",
    "Matteo Collina (https://github.com/mcollina)",
    "Wyatt Preul (https://github.com/geek)",
    "rithdmc (https://github.com/rithdmc)",
    "Guy Ellis (https://github.com/guyellis)",
    "Cian Butler (https://github.com/butlerx)",
    "Sorin Silaghi (https://github.com/sorin7486)"
  ],
  "engines": {
    "node": ">=12"
  },
  "dependencies": {
    "uuid": "^10.0.0"
  },
  "devDependencies": {
    "@hapi/code": "9",
    "@hapi/lab": "25",
    "coveralls": "^3.1.1",
    "prettier": "^3.3.1",
    "seneca-doc": "^2.1.3",
    "seneca-msg-test": "^4.1.0",
    "@seneca/maintain": "^0.1.0"
  },
  "peerDependencies": {
    "seneca": ">=3||>=4.0.0-rc2",
    "seneca-promisify": ">=3",
    "seneca-entity": ">=26"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/senecajs/seneca-user.git"
  },
  "pre-commit": [
    "test"
  ]
}