-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.71 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@aws-lambda-powertools/commons",
"version": "2.30.1",
"description": "A shared utility package for Powertools for AWS Lambda (TypeScript) libraries",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest --run",
"test:unit": "vitest --run",
"test:unit:coverage": "vitest --run tests/unit --coverage.enabled --coverage.thresholds.100 --coverage.include='src/**'",
"test:unit:types": "vitest --run tests/types --typecheck",
"test:e2e": "echo 'Not Applicable'",
"generateVersionFile": "echo \"// this file is auto generated, do not modify\nexport const PT_VERSION = '$(jq -r '.version' package.json)';\" > src/version.ts",
"build:cjs": "tsc --build tsconfig.cjs.json && echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
"build:esm": "tsc --build tsconfig.json && echo '{ \"type\": \"module\" }' > lib/esm/package.json",
"build": "npm run build:esm & npm run build:cjs",
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"lint:ci": "biome ci .",
"prepack": "node ../../.github/scripts/release_patch_package_json.js ."
},
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/packages/commons#readme",
"license": "MIT-0",
"type": "module",
"exports": {
".": {
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
},
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
}
},
"./typeutils": {
"import": "./lib/esm/typeUtils.js",
"require": "./lib/cjs/typeUtils.js"
},
"./utils/base64": {
"import": "./lib/esm/fromBase64.js",
"require": "./lib/cjs/fromBase64.js"
},
"./utils/lru-cache": {
"import": "./lib/esm/LRUCache.js",
"require": "./lib/cjs/LRUCache.js"
},
"./utils/unmarshallDynamoDB": {
"import": "./lib/esm/unmarshallDynamoDB.js",
"require": "./lib/cjs/unmarshallDynamoDB.js"
},
"./utils/env": {
"import": "./lib/esm/envUtils.js",
"require": "./lib/cjs/envUtils.js"
},
"./types": {
"import": "./lib/esm/types/index.js",
"require": "./lib/cjs/types/index.js"
},
"./utils/deep-merge": {
"import": "./lib/esm/deepMerge.js",
"require": "./lib/cjs/deepMerge.js"
}
},
"typesVersions": {
"*": {
"typeutils": [
"lib/cjs/typeUtils.d.ts",
"lib/esm/typeUtils.d.ts"
],
"utils/base64": [
"lib/cjs/fromBase64.d.ts",
"lib/esm/fromBase64.d.ts"
],
"utils/lru-cache": [
"lib/cjs/LRUCache.d.ts",
"lib/esm/LRUCache.d.ts"
],
"utils/unmarshallDynamoDB": [
"lib/cjs/unmarshallDynamoDB.d.ts",
"lib/esm/unmarshallDynamoDB.d.ts"
],
"utils/env": [
"lib/cjs/envUtils.d.ts",
"lib/esm/envUtils.d.ts"
],
"types": [
"lib/cjs/types/index.d.ts",
"lib/esm/types/index.d.ts"
],
"utils/deep-merge": [
"lib/cjs/deepMerge.d.ts",
"lib/esm/deepMerge.d.ts"
]
}
},
"types": "./lib/cjs/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aws-powertools/powertools-lambda-typescript.git"
},
"bugs": {
"url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
},
"keywords": [
"aws",
"lambda",
"powertools",
"serverless",
"nodejs"
],
"dependencies": {
"@aws/lambda-invoke-store": "0.2.3"
},
"devDependencies": {
"@aws-lambda-powertools/testing-utils": "file:../testing"
}
}