forked from Cimpress-MCP/lambda-essentials-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.79 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.79 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
{
"name": "lambda-essentials-ts",
"version": "5.1.7",
"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": "^2.1078.0",
"axios": "~0.21.3",
"axios-cache-adapter": "~2.7.3",
"fast-safe-stringify": "~2.0.7",
"is-error": "~2.2.2",
"jsonwebtoken": "~8.5.1",
"md5": "~2.3.0",
"openapi-factory": "5.2.38",
"retry-axios": "~2.6.0",
"uuid": "~8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"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": ">=12.0.0"
}
}