forked from aws-powertools/powertools-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.89 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
83
84
85
86
{
"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.8.3",
"@types/aws-lambda": "^8.10.145",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@vitest/coverage-v8": "^2.0.5",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"lerna": "8.1.2",
"lint-staged": "^15.2.10",
"markdownlint-cli2": "^0.13.0",
"middy4": "npm:@middy/core@^4.7.0",
"middy5": "npm:@middy/core@^5.4.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.6",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-zod": "^1.2.1",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{js,ts}": "biome check --write",
"*.md": "markdownlint-cli2 --fix"
},
"engines": {
"node": ">=18"
},
"overrides": {
"lerna": {
"tar": "6.2.1"
}
}
}