-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 1.94 KB
/
package.json
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
{
"name": "lambda-essentials-ts",
"version": "6.1.0",
"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.569.0",
"@aws-sdk/client-secrets-manager": "^3.569.0",
"axios": "~0.21.3",
"axios-cache-adapter": "~2.7.3",
"fast-safe-stringify": "~2.0.7",
"is-error": "~2.2.2",
"jsonwebtoken": "9.0.0",
"md5": "~2.3.0",
"openapi-factory": "5.4.60",
"retry-axios": "~2.6.0",
"uuid": "~8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/newrelic": "^9.14.0",
"eslint": "^7.18.0",
"eslint-config-cimpress-atsquad": "^2.1.2",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.13",
"prettier": "^2.7.1",
"ts-jest": "^26.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"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": ">=14.0.0"
},
"peerDependencies": {
"newrelic": "^10.2.0"
}
}