1+ {
2+ "name" : " @aws-lambda-powertools/jmespath" ,
3+ "version" : " 2.0.2" ,
4+ "description" : " A type safe and modern jmespath module to parse and extract data from JSON documents using JMESPath" ,
5+ "author" : {
6+ "name" : " Amazon Web Services" ,
7+ "url" : " https://aws.amazon.com"
8+ },
9+ "private" : true ,
10+ "scripts" : {
11+ "test" : " npm run test:unit" ,
12+ "test:unit" : " jest --group=unit --detectOpenHandles --coverage" ,
13+ "jest" : " jest --detectOpenHandles --verbose" ,
14+ "test:e2e" : " echo 'Not applicable for this package'" ,
15+ "watch" : " jest --watch --group=unit" ,
16+ "build:cjs" : " tsc --build tsconfig.json && echo '{ \" type\" : \" commonjs\" }' > lib/cjs/package.json" ,
17+ "build:esm" : " tsc --build tsconfig.esm.json && echo '{ \" type\" : \" module\" }' > lib/esm/package.json" ,
18+ "build" : " npm run build:esm & npm run build:cjs" ,
19+ "lint" : " eslint --ext .ts,.js --no-error-on-unmatched-pattern ." ,
20+ "lint-fix" : " eslint --fix --ext .ts,.js --no-error-on-unmatched-pattern ." ,
21+ "prepack" : " node ../../.github/scripts/release_patch_package_json.js ."
22+ },
23+ "lint-staged" : {
24+ "*.{js,ts}" : " npm run lint-fix"
25+ },
26+ "homepage" : " https://github.com/aws-powertools/powertools-lambda-typescript" ,
27+ "license" : " MIT-0" ,
28+ "type" : " module" ,
29+ "exports" : {
30+ "." : {
31+ "require" : {
32+ "types" : " ./lib/cjs/index.d.ts" ,
33+ "default" : " ./lib/cjs/index.js"
34+ },
35+ "import" : {
36+ "types" : " ./lib/esm/index.d.ts" ,
37+ "default" : " ./lib/esm/index.js"
38+ }
39+ },
40+ "./envelopes" : {
41+ "import" : " ./lib/esm/envelopes.js" ,
42+ "require" : " ./lib/cjs/envelopes.js"
43+ },
44+ "./functions" : {
45+ "import" : " ./lib/esm/PowertoolsFunctions.js" ,
46+ "require" : " ./lib/cjs/PowertoolsFunctions.js"
47+ },
48+ "./types" : {
49+ "import" : " ./lib/esm/types.js" ,
50+ "require" : " ./lib/cjs/types.js"
51+ }
52+ },
53+ "typesVersions" : {
54+ "*" : {
55+ "envelopes" : [
56+ " lib/cjs/envelopes.d.ts" ,
57+ " lib/esm/envelopes.d.ts"
58+ ],
59+ "functions" : [
60+ " lib/cjs/PowertoolsFunctions.d.ts" ,
61+ " lib/esm/PowertoolsFunctions.d.ts"
62+ ],
63+ "types" : [
64+ " lib/cjs/types.d.ts" ,
65+ " lib/esm/types.d.ts"
66+ ]
67+ }
68+ },
69+ "types" : " ./lib/cjs/index.d.ts" ,
70+ "main" : " ./lib/cjs/index.js" ,
71+ "files" : [
72+ " lib"
73+ ],
74+ "dependencies" : {
75+ "@aws-lambda-powertools/commons" : " ^2.0.2"
76+ },
77+ "repository" : {
78+ "type" : " git" ,
79+ "url" : " git+https://github.com/aws-powertools/powertools-lambda-typescript.git"
80+ },
81+ "bugs" : {
82+ "url" : " https://github.com/aws-powertools/powertools-lambda-typescript/issues"
83+ },
84+ "keywords" : [
85+ " aws" ,
86+ " lambda" ,
87+ " powertools" ,
88+ " jmespath" ,
89+ " serverless" ,
90+ " typescript" ,
91+ " nodejs"
92+ ]
93+ }
0 commit comments