mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"name": "@feathersjs/authentication",
|
|
"description": "Add Authentication to your FeathersJS app.",
|
|
"version": "5.0.0-pre.26",
|
|
"homepage": "https://feathersjs.com",
|
|
"main": "lib/",
|
|
"types": "lib/",
|
|
"keywords": [
|
|
"feathers",
|
|
"feathers-plugin"
|
|
],
|
|
"license": "MIT",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/daffl"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/feathersjs/feathers.git",
|
|
"directory": "packages/authentication"
|
|
},
|
|
"author": {
|
|
"name": "Feathers contributors",
|
|
"email": "hello@feathersjs.com",
|
|
"url": "https://feathersjs.com"
|
|
},
|
|
"files": [
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md",
|
|
"src/**",
|
|
"lib/**",
|
|
"*.d.ts",
|
|
"*.js"
|
|
],
|
|
"contributors": [],
|
|
"bugs": {
|
|
"url": "https://github.com/feathersjs/feathers/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "npm run compile",
|
|
"compile": "shx rm -rf lib/ && tsc",
|
|
"test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
|
|
},
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@feathersjs/commons": "^5.0.0-pre.26",
|
|
"@feathersjs/errors": "^5.0.0-pre.26",
|
|
"@feathersjs/feathers": "^5.0.0-pre.26",
|
|
"@feathersjs/schema": "^5.0.0-pre.26",
|
|
"@feathersjs/transport-commons": "^5.0.0-pre.26",
|
|
"@types/jsonwebtoken": "^8.5.8",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"lodash": "^4.17.21",
|
|
"long-timeout": "^0.1.1",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@feathersjs/memory": "^5.0.0-pre.26",
|
|
"@types/lodash": "^4.14.182",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^18.0.1",
|
|
"@types/uuid": "^8.3.4",
|
|
"mocha": "^10.0.0",
|
|
"shx": "^0.3.4",
|
|
"ts-node": "^10.8.2",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"gitHead": "0e7553ded9b24016d36021aaedcc2cdb19ab0157"
|
|
}
|