aws-secret-manager-client
Version:
Modern AWS Secrets Manager client for Node.js with TypeScript support, built on AWS SDK v3
89 lines (88 loc) • 2.25 kB
JSON
{
"name": "aws-secret-manager-client",
"version": "3.0.0",
"description": "Modern AWS Secrets Manager client for Node.js with TypeScript support, built on AWS SDK v3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"prepublishOnly": "npm run build && npm run test",
"release": "semantic-release"
},
"keywords": [
"aws",
"secrets-manager",
"aws-sdk",
"secrets",
"security",
"credentials",
"configuration",
"typescript",
"nodejs",
"async",
"promise"
],
"author": {
"name": "Aayush Sharma",
"email": "aayu8982@gmail.com",
"url": "https://github.com/Aayu8982"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Aayu8982/aws-secret-manager-client.git"
},
"bugs": {
"url": "https://github.com/Aayu8982/aws-secret-manager-client/issues"
},
"homepage": "https://github.com/Aayu8982/aws-secret-manager-client#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.600.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.1",
"jest": "^29.5.0",
"prettier": "^3.6.2",
"semantic-release": "^22.0.0",
"ts-jest": "^29.1.0",
"tsup": "^7.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@aws-sdk/client-secrets-manager": "^3.600.0"
},
"publishConfig": {
"access": "public"
}
}