{ "name": "aws-sdk-client-mock", "description": "Easy and powerful mocking of AWS SDK v3 Clients", "version": "4.0.1", "license": "MIT", "author": { "name": "Maciej Radzikowski", "email": "maciej@radzikowski.com.pl", "url": "https://radzikowski.com.pl" }, "homepage": "https://github.com/m-radzikowski/aws-sdk-client-mock", "repository": { "type": "git", "url": "https://github.com/m-radzikowski/aws-sdk-client-mock.git" }, "keywords": [ "aws", "aws-sdk", "testing", "mock", "unit-testing", "aws-lambda" ], "scripts": { "pretest": "rimraf coverage/", "test": "jest --coverage", "test-types": "tsd", "typedoc": "typedoc", "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "prebuild": "rimraf dist/", "build": "yarn run build:cjs && yarn run build:es", "local-publish": "npm publish --registry http://localhost:4873/" }, "module": "dist/es/index.js", "main": "dist/cjs/index.js", "types": "dist/types/index.d.ts", "files": [ "dist" ], "dependencies": { "@types/sinon": "^10.0.10", "sinon": "^16.1.3", "tslib": "^2.1.0" }, "devDependencies": { "@aws-sdk/client-dynamodb": "3.363.0", "@aws-sdk/client-s3": "3.363.0", "@aws-sdk/client-sns": "3.363.0", "@aws-sdk/client-sqs": "3.363.0", "@aws-sdk/lib-dynamodb": "3.363.0", "@smithy/types": "1.1.0", "typedoc": "0.23.26" }, "jest": { "preset": "ts-jest", "resetMocks": true, "testEnvironment": "node", "modulePathIgnorePatterns": [ "test-e2e" ], "coveragePathIgnorePatterns": [ "test/" ], "coverageThreshold": { "global": { "statements": 100 } } } }