forked from aws-powertools/powertools-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.52 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
87
88
89
90
91
92
93
94
95
96
97
{
"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.",
"main": "lib/index.js",
"types": "lib/",
"workspaces": [
"packages/commons",
"packages/logger",
"packages/metrics",
"packages/tracer"
],
"scripts": {
"init-environment": "husky install",
"test": "npm run lerna-test",
"commit": "commit",
"package": "npm run package",
"setup-local": "npm ci --foreground-scripts && cd examples/cdk && npm ci && cd ../.. && cd examples/sam && npm ci && cd ../.. && npm run init-environment",
"lerna-test": "lerna exec -- npm run test",
"lerna-test:unit": "lerna exec -- npm run test:unit",
"lerna-test:e2e": "lerna exec -- npm run test:e2e",
"lerna-package": "lerna exec -- npm run package",
"lerna-package-bundle": "lerna exec -- npm run package-bundle",
"lerna-build": "lerna exec -- tsc",
"lerna-lint": "lerna exec -- eslint \"./{src,tests}/**/*.ts ./src/*.ts\"",
"lerna-format": "lerna exec -- eslint --fix \"./{src,tests}/**/*.ts ./src/*.ts\"",
"lerna-prepare": "lerna exec -- npm run build",
"lerna-prepublishOnly": "lerna exec -- npm test && lerna exec -- npm run lint",
"lerna-preversion": "lerna exec -- npm run lint",
"lerna-version": "lerna exec -- npm run format && git add -A src",
"postversion": "git push && git push --tags",
"docs-website-build-run": "npm run docs-buildDockerImage && npm run docs-runLocalDocker",
"docs-buildDockerImage": "docker build -t powertool-typescript/docs ./docs/",
"docs-runLocalDocker": "docker run --rm -it -p 8000:8000 -v ${PWD}:/docs powertool-typescript/docs",
"docs-api-build-run": "npm run docs-generateApiDoc && npx live-server api",
"docs-generateApiDoc": "typedoc .",
"docs-runLocalApiDoc": "npx live-server api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/aws-lambda-powertools-typescript.git"
},
"keywords": [],
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/awslabs/aws-lambda-powertools-typescript/issues"
},
"homepage": "https://github.com/awslabs/aws-lambda-powertools-typescript#readme",
"devDependencies": {
"@aws-cdk/cx-api": "^2.17.0",
"@aws-cdk/cloudformation-diff": "^2.17.0",
"aws-cdk-lib": "^2.17.0",
"constructs": "^10.0.92",
"@commitlint/cli": "^17.0.0",
"@middy/core": "^2.5.6",
"@types/aws-lambda": "^8.10.72",
"@types/jest": "^27.4.0",
"@types/node": "^18.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"archiver": "^5.3.0",
"aws-cdk": "^2.17.0",
"aws-sdk": "^2.1082.0",
"cdk-assets": "^2.17.0",
"esbuild": "^0.14.23",
"eslint": "^8.4.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^8.0.1",
"jest": "^27.5.1",
"jest-runner-groups": "^2.1.0",
"lerna": "^4.0.0",
"promptly": "^3.2.0",
"proxy-agent": "^5.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.0.0",
"typedoc": "^0.22.11",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"files": [
"lib/**/*"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"hosted-git-info": "^5.0.0"
}
}