feathersjs/feathers-permissions

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "feathers-permissions",
  "description": "Simple permissions module for Feathers",
  "version": "2.0.3",
  "homepage": "https://github.com/feathersjs-ecosystem/feathers-permissions",
  "main": "lib/",
  "types": "types/",
  "keywords": [
    "feathers",
    "feathers-plugin"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/feathersjs-ecosystem/feathers-permissions.git"
  },
  "author": {
    "name": "Feathers contributors",
    "email": "hello@feathersjs.com",
    "url": "https://feathersjs.com"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/feathersjs-ecosystem/feathers-permissions/issues"
  },
  "engines": {
    "node": ">= 10"
  },
  "scripts": {
    "publish": "git push origin --tags && npm run changelog && git push origin",
    "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-permissions && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
    "lint": "semistandard --fix",
    "dtslint": "dtslint types",
    "mocha": "mocha --recursive test/",
    "coverage": "nyc npm run mocha",
    "test": "npm run lint && npm run dtslint && npm run coverage",
    "start": "npm run compile && node example/app"
  },
  "semistandard": {
    "env": [
      "mocha"
    ]
  },
  "directories": {
    "lib": "lib"
  },
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "lib/**",
    "types/**",
    "*.d.ts",
    "*.js"
  ],
  "dependencies": {
    "@feathersjs/errors": "^4.5.8",
    "lodash": "^4.17.20",
    "debug": "^4.2.0"
  },
  "devDependencies": {
    "@feathersjs/feathers": "^4.5.8",
    "@types/node": "^14.11.5",
    "dtslint": "^4.0.4",
    "feathers-memory": "^4.1.0",
    "mocha": "^8.1.3",
    "nyc": "^15.1.0",
    "semistandard": "^16.0.0",
    "typescript": "^4.0.3"
  }
}