UNPKG

feathers-authentication

Version:
108 lines (107 loc) 3.15 kB
{ "name": "feathers-authentication", "description": "Add Authentication to your FeathersJS app.", "version": "1.3.1", "homepage": "https://github.com/feathersjs/feathers-authentication", "main": "lib/", "types": [ "./index.d.ts", "./client.d.ts" ], "keywords": [ "feathers", "feathers-plugin" ], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/feathersjs/feathers-authentication.git" }, "author": { "name": "Feathers contributors", "email": "hello@feathersjs.com", "url": "https://feathersjs.com" }, "contributors": [], "bugs": { "url": "https://github.com/feathersjs/feathers-authentication/issues" }, "engines": { "node": ">= 4" }, "scripts": { "start": "node example/app", "prepublish": "npm run compile", "publish": "git push origin && git push origin --tags", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish", "release:pre": "npm publish --tag next", "changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"", "compile": "rimraf lib/ && babel -d lib/ src/", "watch": "babel --watch -d lib/ src/", "lint": "semistandard --fix", "mocha": "mocha --opts mocha.opts", "test": "npm run compile && npm run lint && npm run coverage && nsp check", "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts" }, "semistandard": { "sourceType": "module", "env": [ "mocha" ] }, "directories": { "lib": "lib" }, "dependencies": { "debug": "^3.1.0", "feathers-authentication-client": "^0.3.1", "feathers-commons": "^0.8.4", "feathers-errors": "^2.4.0", "feathers-socket-commons": "^2.3.1", "jsonwebtoken": "^8.0.0", "lodash.clone": "^4.5.0", "lodash.merge": "^4.6.0", "lodash.omit": "^4.5.0", "lodash.pick": "^4.4.0", "long-timeout": "^0.1.1", "ms": "^2.0.0", "passport": "^0.4.0", "uuid": "^3.1.0" }, "devDependencies": { "babel-cli": "^6.14.0", "babel-core": "^6.18.2", "babel-plugin-add-module-exports": "^0.2.0", "babel-polyfill": "^6.26.0", "babel-preset-es2015": "^6.14.0", "body-parser": "^1.15.2", "chai": "^4.1.0", "chai-uuid": "^1.0.6", "feathers": "^2.0.2", "feathers-authentication-jwt": "^0.3.0", "feathers-authentication-local": "^0.4.0", "feathers-configuration": "^0.4.1", "feathers-hooks": "^2.0.0", "feathers-memory": "^1.0.0", "feathers-primus": "^2.0.0", "feathers-rest": "^1.5.0", "feathers-socketio": "^2.0.0", "istanbul": "^1.1.0-alpha.1", "jshint": "^2.9.3", "localstorage-memory": "^1.0.2", "mocha": "^4.0.0", "mongodb": "^2.2.29", "nsp": "^2.6.1", "passport-strategy": "^1.0.0", "primus": "^7.0.0", "rimraf": "^2.5.4", "semistandard": "^11.0.0", "sinon": "^4.0.0", "sinon-chai": "^2.8.0", "socket.io-client": "^2.0.0", "superagent": "^3.0.0", "ws": "^3.1.0" } }