seneca-user
Version:
User management plugin for Seneca
77 lines (76 loc) • 2.75 kB
JSON
{
"name": "seneca-user",
"description": "User management plugin for Seneca",
"version": "2.2.0",
"keywords": [
"seneca",
"user",
"plugin"
],
"author": {
"name": "Richard Rodger",
"email": "richard@ricebridge.com",
"url": "http://richardrodger.com/"
},
"license": "MIT",
"main": "user.js",
"scripts": {
"test": "lab -v -L -P test -r console -m 3000 -t 70 -I URL,URLSearchParams,SharedArrayBuffer,Atomics,BigUint64Array,BigInt64Array,BigInt",
"coveralls": "lab -s -P test -r lcov -I WebAssembly | coveralls",
"coverage": "lab -v -P test -L -t 70 -r html -I WebAssembly > doc/coverage.html",
"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": "npm run clean && npm i --registry=http://registry.npmjs.org && npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=http://registry.npmjs.org"
},
"files": [
"LICENSE",
"README.md",
"user.js",
"default-options.json"
],
"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": ">=4.0.0"
},
"dependencies": {
"eraro": "^2.1.0",
"lodash": "^4.17.15",
"uuid": "^3.4.0"
},
"devDependencies": {
"async": "3",
"code": "5",
"coveralls": "3",
"lab": "14",
"prettier": "1",
"seneca": "^3.20.0",
"seneca-basic": "^1.0.0",
"seneca-entity": "^7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-user.git"
},
"pre-commit": [
"test"
]
}