forked from aws-powertools/powertools-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.52 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.52 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
{
"name": "aws-lambda-powertools-typescript",
"version": "0.0.1",
"description": "A suite of utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, and more.",
"workspaces": [
"packages/commons",
"packages/jmespath",
"packages/logger",
"packages/metrics",
"packages/tracer",
"packages/parameters",
"packages/idempotency",
"packages/parser",
"packages/batch",
"packages/testing",
"examples/snippets",
"layers",
"examples/app",
"packages/event-handler",
"packages/validation",
"packages/kafka"
],
"type": "module",
"scripts": {
"test": "npm t -ws",
"test:e2e": "npm run test:e2e -ws",
"commit": "commit",
"setup-local": "npm ci && npm run build && husky",
"build": "npm run build -ws",
"docs:docker:build": "docker build -t powertools-typescript/docs ./docs/",
"docs:docker:run": "docker run --rm -it -p 8000:8000 -v ${PWD}:/docs powertools-typescript/docs",
"docs:local:setup": "python3 -m venv .venv && .venv/bin/pip install -r docs/requirements.txt",
"docs:local:run": ".venv/bin/mkdocs serve",
"docs:local:api": "typedoc .",
"postpublish": "git restore .",
"lint:markdown": "markdownlint-cli2 '**/*.md' '#node_modules' '#**/*/node_modules' '#docs/changelog.md' '#LICENSE.md' '#.github' '#CHANGELOG.md' '#**/*/CHANGELOG.md' '#examples/app/README.md' '#.venv' '#site'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-powertools/powertools-lambda-typescript.git"
},
"keywords": [],
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
},
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/aws-lambda": "^8.10.159",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"middy5": "npm:@middy/core@^5.5.1",
"middy6": "npm:@middy/core@^6.4.5",
"middy7": "npm:@middy/core@^7.0.2",
"typedoc": "^0.28.15",
"typedoc-plugin-missing-exports": "^4.1.2",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"lint-staged": {
"*.{js,ts,json}": "biome check --write --no-errors-on-unmatched",
"*.md": "markdownlint-cli2 --fix"
},
"engines": {
"node": ">=20"
}
}