@tdc/feathers-authentication-api-key
Version:
API Key authentication strategy for @feathers/authentication
60 lines (59 loc) • 1.56 kB
JSON
{
"name": "@tdc/feathers-authentication-api-key",
"description": "API Key authentication strategy for @feathers/authentication",
"version": "0.0.6",
"homepage": "https://simonsinding.me",
"main": "lib/",
"types": "./lib/index.d.ts",
"keywords": [
"feathers",
"feathers-plugin",
"feathers-authentication",
"authentication",
"api-keys",
"apikeys"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/thesinding/authentication-api-key.git"
},
"author": {
"name": "Simon Sinding",
"email": "sinding2000@gmail.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/thesinding/authentication-api-key/issues"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "npm run prepublish",
"compile": "shx rm -rf lib/ && tsc --declaration",
"test": "npm run compile && npm run mocha",
"mocha": "mocha --opts ../../mocha.ts.opts --recursive test/**.test.ts test/**/*.test.ts"
},
"directories": {
"lib": "lib"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^4.3.3",
"@feathersjs/errors": "^4.3.3",
"@feathersjs/feathers": "^4.3.3"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/jsonwebtoken": "^8.3.3",
"mocha": "^6.2.0",
"shx": "^0.3.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}