-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathpackage.json
82 lines (82 loc) · 2.79 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": "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/batch",
"packages/testing",
"packages/parser",
"examples/snippets",
"layers",
"examples/app",
"packages/event-handler"
],
"scripts": {
"test": "npm t -ws",
"test:parallel": "lerna exec --no-bail --no-sort --stream --concurrency 8 -- npm run test",
"test:e2e": "npm run test:e2e -ws",
"test:e2e:parallel": "lerna exec --no-bail --no-sort --stream --concurrency 8 -- npm run test:e2e",
"commit": "commit",
"setup-local": "npm ci && npm run build && husky",
"build": "npm run build -ws",
"docs-website-build-run": "npm run docs-buildDockerImage && npm run docs-runLocalDocker",
"docs-buildDockerImage": "docker build -t powertools-typescript/docs ./docs/",
"docs-runLocalDocker": "docker run --rm -it -p 8000:8000 -v ${PWD}:/docs powertools-typescript/docs",
"docs-api-build-run": "npm run docs-generateApiDoc && npx live-server api",
"docs-generateApiDoc": "typedoc .",
"docs-runLocalApiDoc": "npx live-server api",
"postpublish": "git restore .",
"lint:markdown": "markdownlint-cli2 '**/*.md' '#node_modules' '#**/*/node_modules' '#docs/changelog.md' '#LICENSE.md' '#.github' '#**/*/CHANGELOG.md' '#examples/app/README.md'"
},
"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": "^1.9.4",
"@types/aws-lambda": "^8.10.147",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^2.1.8",
"husky": "^9.1.7",
"lerna": "8.1.2",
"lint-staged": "^15.4.2",
"markdownlint-cli2": "^0.17.2",
"middy4": "npm:@middy/core@^4.7.0",
"middy5": "npm:@middy/core@^5.4.3",
"middy6": "npm:@middy/core@^6.0.0",
"typedoc": "^0.27.6",
"typedoc-plugin-missing-exports": "^3.1.0",
"typedoc-plugin-zod": "^1.3.1",
"typescript": "^5.7.3",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{js,ts}": "biome check --write",
"*.md": "markdownlint-cli2 --fix"
},
"engines": {
"node": ">=18"
},
"overrides": {
"lerna": {
"tar": "6.2.1"
}
}
}