-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
69 lines (69 loc) · 2.35 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
{
"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/*"
],
"scripts": {
"init-environment": "husky install",
"test": "npm run lerna-test",
"commit": "commit",
"package": "npm run package",
"lerna-ci": "lerna exec -- npm ci",
"lerna-test": "lerna exec -- npm run test",
"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": {
"@types/aws-lambda": "^8.10.72",
"@types/jest": "^27.0.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"husky": "^7.0.1",
"jest": "^27.0.4",
"lerna": "^4.0.0",
"ts-jest": "^27.0.3",
"typedoc": "0.22.10",
"typescript": "^4.1.3",
"typedoc-plugin-missing-exports": "^0.22.6"
},
"files": [
"lib/**/*"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"hosted-git-info": "^4.0.2"
}
}