1- {
2- "name" : " @aws-lambda-powertools/idempotency" ,
3- "version" : " 0.0.11" ,
4- "description" : " The idempotency package for the Powertools for AWS Lambda (TypeScript) library. It provides options to make your Lambda functions idempotent and safe to retry." ,
5- "author" : {
6- "name" : " Amazon Web Services" ,
7- "url" : " https://aws.amazon.com"
8- },
9- "publishConfig" : {
10- "access" : " public"
11- },
12- "scripts" : {
13- "commit" : " commit" ,
14- "test" : " npm run test:unit" ,
15- "test:unit" : " jest --group=unit --detectOpenHandles --coverage --verbose" ,
16- "test:e2e:nodejs14x" : " RUNTIME=nodejs14x jest --group=e2e" ,
17- "test:e2e:nodejs16x" : " RUNTIME=nodejs16x jest --group=e2e" ,
18- "test:e2e:nodejs18x" : " RUNTIME=nodejs18x jest --group=e2e" ,
19- "test:e2e" : " jest --group=e2e --detectOpenHandles" ,
20- "watch" : " jest --watch --group=unit" ,
21- "build" : " tsc" ,
22- "lint" : " eslint --ext .ts,.js --no-error-on-unmatched-pattern ." ,
23- "lint-fix" : " eslint --fix --ext .ts,.js --no-error-on-unmatched-pattern ." ,
24- "package" : " mkdir -p dist/ && npm pack && mv *.tgz dist/" ,
25- "package-bundle" : " ../../package-bundler.sh idempotency-bundle ./dist" ,
26- "prepare" : " npm run build"
27- },
28- "lint-staged" : {
29- "*.ts" : " npm run lint-fix"
30- },
31- "homepage" : " https://github.com/awslabs/aws-lambda-powertools-typescript/tree/main/packages/idempotency#readme" ,
32- "license" : " MIT" ,
33- "main" : " ./lib/index.js" ,
34- "types" : " ./lib/index.d.ts" ,
35- "typedocMain" : " src/file_that_does_not_exist_so_its_ignored_from_api_docs.ts" ,
36- "files" : [
37- " lib"
38- ],
39- "repository" : {
40- "type" : " git" ,
41- "url" : " git+https://github.com/awslabs/aws-lambda-powertools-typescript.git"
42- },
43- "bugs" : {
44- "url" : " https://github.com/awslabs/aws-lambda-powertools-typescript/issues"
45- },
46- "dependencies" : {
47- "@aws-lambda-powertools/commons" : " ^1.5.0" ,
48- "@aws-sdk/lib-dynamodb" : " ^3.231.0" ,
49- "jmespath" : " ^0.16.0"
50- },
51- "keywords" : [
52- " aws" ,
53- " lambda" ,
54- " powertools" ,
55- " serverless" ,
56- " nodejs"
57- ],
58- "devDependencies" : {
59- "@types/jmespath" : " ^0.15.0" ,
60- "@aws-sdk/client-dynamodb" : " ^3.231.0" ,
61- "aws-sdk-client-mock" : " ^2.0.1" ,
62- "aws-sdk-client-mock-jest" : " ^2.0.1"
63- }
1+ {
2+ "name" : " @aws-lambda-powertools/idempotency" ,
3+ "version" : " 1.8.0-alpha.0" ,
4+ "description" : " The idempotency package for the Powertools for AWS Lambda (TypeScript) library. It provides options to make your Lambda functions idempotent and safe to retry." ,
5+ "author" : {
6+ "name" : " Amazon Web Services" ,
7+ "url" : " https://aws.amazon.com"
8+ },
9+ "publishConfig" : {
10+ "access" : " public"
11+ },
12+ "scripts" : {
13+ "commit" : " commit" ,
14+ "test" : " npm run test:unit" ,
15+ "test:unit" : " jest --group=unit --detectOpenHandles --coverage --verbose" ,
16+ "test:e2e:nodejs14x" : " RUNTIME=nodejs14x jest --group=e2e" ,
17+ "test:e2e:nodejs16x" : " RUNTIME=nodejs16x jest --group=e2e" ,
18+ "test:e2e:nodejs18x" : " RUNTIME=nodejs18x jest --group=e2e" ,
19+ "test:e2e" : " jest --group=e2e --detectOpenHandles" ,
20+ "watch" : " jest --watch --group=unit" ,
21+ "build" : " tsc" ,
22+ "lint" : " eslint --ext .ts,.js --no-error-on-unmatched-pattern ." ,
23+ "lint-fix" : " eslint --fix --ext .ts,.js --no-error-on-unmatched-pattern ." ,
24+ "package" : " mkdir -p dist/ && npm pack && mv *.tgz dist/" ,
25+ "package-bundle" : " ../../package-bundler.sh idempotency-bundle ./dist" ,
26+ "preprepare" : " rm -rf ./lib" ,
27+ "prepare" : " npm run build"
28+ },
29+ "lint-staged" : {
30+ "*.ts" : " npm run lint-fix" ,
31+ "*.js" : " npm run lint-fix"
32+ },
33+ "homepage" : " https://github.com/awslabs/aws-lambda-powertools-typescript/tree/main/packages/idempotency#readme" ,
34+ "license" : " MIT-0" ,
35+ "exports" : {
36+ "." : {
37+ "import" : " ./lib/index.js" ,
38+ "require" : " ./lib/index.js"
39+ },
40+ "./persistence" : {
41+ "import" : " ./lib/persistence/index.js" ,
42+ "require" : " ./lib/persistence/index.js"
43+ },
44+ "./dynamodb" : {
45+ "import" : " ./lib/persistence/DynamoDbPersistenceLayer.js" ,
46+ "require" : " ./lib/persistence/DynamoDbPersistenceLayer.js"
47+ }
48+ },
49+ "typesVersions" : {
50+ "*" : {
51+ "persistence" : [
52+ " lib/persistence/index.d.ts"
53+ ],
54+ "dynamodb" : [
55+ " lib/persistence/DynamoDbPersistenceLayer.d.ts"
56+ ]
57+ }
58+ },
59+ "main" : " ./lib/index.js" ,
60+ "types" : " ./lib/index.d.ts" ,
61+ "typedocMain" : " src/file_that_does_not_exist_so_its_ignored_from_api_docs.ts" ,
62+ "files" : [
63+ " lib"
64+ ],
65+ "repository" : {
66+ "type" : " git" ,
67+ "url" : " git+https://github.com/awslabs/aws-lambda-powertools-typescript.git"
68+ },
69+ "bugs" : {
70+ "url" : " https://github.com/awslabs/aws-lambda-powertools-typescript/issues"
71+ },
72+ "dependencies" : {
73+ "@aws-lambda-powertools/commons" : " ^1.5.0" ,
74+ "@aws-sdk/lib-dynamodb" : " ^3.231.0" ,
75+ "jmespath" : " ^0.16.0"
76+ },
77+ "keywords" : [
78+ " aws" ,
79+ " lambda" ,
80+ " powertools" ,
81+ " serverless" ,
82+ " nodejs"
83+ ],
84+ "devDependencies" : {
85+ "@aws-sdk/client-dynamodb" : " ^3.231.0" ,
86+ "@types/jmespath" : " ^0.15.0" ,
87+ "aws-sdk-client-mock" : " ^2.0.1" ,
88+ "aws-sdk-client-mock-jest" : " ^2.0.1"
89+ }
6490}
0 commit comments