feathersjs-ecosystem/feathers-authentication-management

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "feathers-authentication-management",
  "description": "Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication",
  "version": "5.0.1",
  "repository": {
    "type": "git",
    "url": "git://github.com/feathersjs-ecosystem/feathers-authentication-management.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/feathersjs-ecosystem/feathers-authentication-management/issues"
  },
  "homepage": "https://feathers-a-m.netlify.app/",
  "keywords": [
    "feathers",
    "feathers-plugin",
    "hook",
    "hooks",
    "services",
    "authentication",
    "verification"
  ],
  "author": {
    "name": "Feathers contributors",
    "email": "hello@feathersjs.com",
    "url": "https://feathersjs.com"
  },
  "engines": {
    "node": ">= 14"
  },
  "main": "dist/",
  "types": "dist/",
  "directories": {
    "src": "src"
  },
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "src/**",
    "lib/**",
    "dist/**"
  ],
  "scripts": {
    "preversion": "npm run lint && npm run test && npm run compile",
    "publish": "git push origin --tags && npm run changelog && git push origin",
    "release:pre": "npm version prerelease --preid=pre && npm publish --tag pre",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-authentication-management && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
    "mocha": "cross-env TS_NODE_PROJECT='tsconfig.test.json' mocha --require ts-node/register --timeout 40000",
    "coverage": "nyc npm run mocha",
    "test": "npm run mocha",
    "compile": "shx rm -rf dist/ && tsc",
    "docs": "vitepress dev docs --port 3333 --open",
    "docs:build": "vitepress build docs",
    "check-updates": "ncu -u && ncu -u --cwd examples/js"
  },
  "peerDependencies": {
    "@feathersjs/feathers": "^5.0.0"
  },
  "dependencies": {
    "@feathersjs/authentication": "^5.0.11",
    "@feathersjs/authentication-client": "^5.0.11",
    "@feathersjs/authentication-local": "^5.0.11",
    "@feathersjs/errors": "^5.0.11",
    "bcryptjs": "^2.4.3",
    "debug": "^4.3.4",
    "feathers-hooks-common": "^8.1.1",
    "lodash": "^4.17.21",
    "type-fest": "^4.6.0"
  },
  "devDependencies": {
    "@feathersjs/feathers": "^5.0.11",
    "@feathersjs/memory": "^5.0.11",
    "@feathersjs/socketio": "^5.0.11",
    "@feathersjs/transport-commons": "^5.0.11",
    "@types/bcryptjs": "^2.4.5",
    "@types/debug": "^4.1.10",
    "@types/lodash": "^4.14.200",
    "@types/mocha": "^10.0.3",
    "@types/node": "^20.8.10",
    "@typescript-eslint/eslint-plugin": "^6.9.1",
    "@typescript-eslint/parser": "^6.9.1",
    "@unocss/preset-uno": "^0.57.2",
    "@vueuse/core": "^10.5.0",
    "cross-env": "^7.0.3",
    "date-fns": "^2.30.0",
    "eslint": "^8.53.0",
    "eslint-import-resolver-typescript": "^3.6.1",
    "eslint-plugin-import": "^2.29.0",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "shx": "^0.3.4",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2",
    "unocss": "^0.57.2",
    "unplugin-vue-components": "^0.25.2",
    "vitepress": "^1.0.0-rc.24"
  }
}