UNPKG

fastify-secrets-aws

Version:

Fastify secrets plugin for AWS Secrets Manager

59 lines (58 loc) 1.45 kB
{ "name": "fastify-secrets-aws", "version": "4.0.0", "description": "Fastify secrets plugin for AWS Secrets Manager", "main": "lib/fastify-secrets-aws.js", "scripts": { "lint": "eslint .", "lint:fix": "npm run lint -- --fix", "lint:staged": "lint-staged", "test": "node --test", "prepare": "husky" }, "repository": { "type": "git", "url": "git+https://github.com/nearform/fastify-secrets-aws.git" }, "author": "NearForm Ltd", "license": "Apache-2.0", "keywords": [ "fastify", "secrets", "aws", "secretsmanager" ], "bugs": { "url": "https://github.com/nearform/fastify-secrets-aws/issues" }, "homepage": "https://github.com/nearform/fastify-secrets-aws#readme", "engines": { "node": ">=18" }, "devDependencies": { "eslint": "^9.16.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-n": "^17.14.0", "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-promise": "^7.2.1", "eslint-plugin-standard": "^5.0.0", "fastify": "^5.1.0", "husky": "^9.1.7", "lint-staged": "^15.2.10", "prettier": "^3.4.2", "proxyquire": "^2.1.3", "sinon": "^19.0.2", "uuid": "^11.0.3" }, "lint-staged": { "*.js": [ "eslint --fix", "prettier --write" ] }, "dependencies": { "@aws-sdk/client-secrets-manager": "^3.588.0", "fastify-secrets-core": "^3.0.0" } }