forked from aws-powertools/powertools-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.1 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
{
"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/tracing"
],
"scripts": {
"init-environment": "husky install",
"test": "npm run lerna-test",
"commit": "commit",
"package": "npm run package",
"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-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-buildDockerImage": "docker build -t powertool-typescript/docs ./docs/",
"docs-runLocalDocker": "docker run --rm -it -p 8000:8000 -v ${PWD}:/docs powertool-typescript/docs",
"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/aws-dynamodb": "^1.146.0",
"@aws-cdk/aws-lambda-nodejs": "^1.146.0",
"@aws-cdk/cloudformation-diff": "^1.146.0",
"@aws-cdk/core": "^1.146.0",
"@commitlint/cli": "^16.2.1",
"@middy/core": "^2.5.6",
"@types/aws-lambda": "^8.10.72",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"archiver": "^5.3.0",
"aws-cdk": "^1.146.0",
"aws-sdk": "^2.1082.0",
"cdk-assets": "^1.146.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": "^7.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"
},
"files": [
"lib/**/*"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"hosted-git-info": "^4.0.2"
}
}