@xmotion/aws-ssm-param-nestjs
Version:
AWS SSM Parameter Store Helper on NestJS application
98 lines (97 loc) • 2.69 kB
JSON
{
"name": "@xmotion/aws-ssm-param-nestjs",
"version": "1.0.4",
"description": "AWS SSM Parameter Store Helper on NestJS application",
"author": "Thammarong Glomjai <thammrong@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"aws",
"aws-ssm",
"aws-ssm-parameter-store",
"nestjs",
"nestjs-module",
"config",
"configuration",
"parameter-store"
],
"main": "dist/index.js",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/thammarongg/aws-ssm-param-nestjs/issues"
},
"homepage": "https://github.com/thammarongg/aws-ssm-param-nestjs",
"repository": {
"type": "git",
"url": "git+https://github.com/thammarongg/aws-ssm-param-nestjs.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "jest --config jest.config.js --verbose -i --detectOpenHandles",
"test:cov": "jest --config jest.config.js --coverage",
"test:unit": "jest --config jest.config.js --testRegex \".*\\.spec\\.ts$\"",
"test:e2e": "jest --config test/jest-e2e.json",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prebuild": "rimraf dist",
"build": "tsc -p ./tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"devDependencies": {
"@nestjs/cli": "^11.0.0",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/platform-express": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@aws-sdk/client-ssm": "^3.500.0",
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}