-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.03 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.03 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
{
"name": "lambda-essentials-ts",
"version": "7.0.6",
"description": "A selection of the finest modules supporting authorization, API routing, error handling, logging and sending HTTP requests.",
"main": "lib/index.js",
"private": false,
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .ts src tests"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cimpress-MCP/lambda-essentials-ts.git"
},
"author": "AT Squad",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cimpress-MCP/lambda-essentials-ts/issues"
},
"homepage": "https://github.com/Cimpress-MCP/lambda-essentials-ts#readme",
"dependencies": {
"@aws-sdk/client-kms": "^3.930.0",
"@aws-sdk/client-secrets-manager": "^3.930.0",
"@types/node": "^25.0.3",
"axios": "1.13.2",
"axios-cache-interceptor": "1.11.2",
"fast-safe-stringify": "~2.1.1",
"is-error": "~2.2.2",
"jsonwebtoken": "9.0.3",
"md5": "~2.3.0",
"openapi-factory": "5.4.60",
"retry-axios": "~3.2.1",
"uuid": "~11.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/newrelic": "^9.14.8",
"axios-mock-adapter": "^2.1.0",
"eslint": "^8.57.1",
"eslint-config-cimpress-atsquad": "^2.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"prettier": "^2.8.8",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"eslintConfig": {
"extends": "cimpress-atsquad"
},
"prettier": "eslint-config-cimpress-atsquad/prettier",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{js,json,yml,yaml,md}": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"collectCoverage": false
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"newrelic": "^12.0.0",
"redis": "5.10.0"
}
}