-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 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
{
"name": "@cloudcomponents/lambda-utils",
"version": "2.0.0",
"description": "Lambda utils for cloudcomponents cdk constructs",
"license": "MIT",
"author": {
"name": "hupe1980",
"url": "https://github.com/hupe1980"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudcomponents/lambda-utils-nodejs.git"
},
"homepage": "https://github.com/cloudcomponents/lambda-utils-nodejs",
"keywords": [
"aws",
"@cloudcomponents"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc",
"build:watch": "rimraf lib && tsc -w",
"test": "jest",
"lint": "eslint '*/**/*.{ts,tsx}' --report-unused-disable-directives",
"prepare": "yarn build && yarn test"
},
"peerDependencies": {
"@aws-sdk/client-secrets-manager": ">=3.567.0",
"@aws-sdk/client-ssm": ">=3.567.0"
},
"dependencies": {
"aws-parameter-cache": "^2.0.15"
},
"devDependencies": {
"@aws-sdk/client-secrets-manager": "^3.567.0",
"@aws-sdk/client-ssm": "^3.567.0",
"@eslint/js": "^9.1.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"aws-sdk-client-mock": "^4.0.0",
"aws-sdk-client-mock-jest": "^4.0.0",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"publishConfig": {
"access": "public"
}
}