Skip to content

Commit 266651b

Browse files
author
Alexander Melnyk
committed
init parser package
1 parent b2fe341 commit 266651b

File tree

3 files changed

+74
-0
lines changed

3 files changed

+74
-0
lines changed

package-lock.json

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"packages/idempotency",
1212
"packages/batch",
1313
"packages/testing",
14+
"packages/parser",
1415
"docs/snippets",
1516
"layers",
1617
"examples/cdk",

packages/parser/package.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"name": "@aws-lambda-powertools/parser",
3+
"version": "0.0.0",
4+
"description": "The parser package for the Powertools for AWS Lambda (TypeScript) library.",
5+
"scripts": {
6+
"test": "npm run test:unit",
7+
"test:unit": "jest --group=unit --detectOpenHandles --coverage --verbose",
8+
"watch": "jest --watch",
9+
"build": "tsc --build --force",
10+
"lint": "eslint --ext .ts,.js --no-error-on-unmatched-pattern .",
11+
"lint-fix": "eslint --fix --ext .ts,.js --no-error-on-unmatched-pattern .",
12+
"prebuild": "rimraf ./lib",
13+
"prepack": "node ../../.github/scripts/release_patch_package_json.js ."
14+
},
15+
"author": {
16+
"name": "Amazon Web Services",
17+
"url": "https://aws.amazon.com"
18+
},
19+
"lint-staged": {
20+
"*.{js,ts}": "npm run lint-fix"
21+
},
22+
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/packages/batch#readme",
23+
"license": "MIT-0",
24+
"main": "./lib/index.js",
25+
"types": "./lib/index.d.ts",
26+
"files": [
27+
"lib"
28+
],
29+
"repository": {
30+
"type": "git",
31+
"url": "git+https://github.com/aws-powertools/powertools-lambda-typescript.git"
32+
},
33+
"bugs": {
34+
"url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
35+
},
36+
"keywords": [
37+
"aws",
38+
"lambda",
39+
"powertools",
40+
"batch",
41+
"batch-processing",
42+
"serverless",
43+
"nodejs"
44+
],
45+
"publishConfig": {
46+
"access": "restricted"
47+
},
48+
"devDependencies": {
49+
"zod": "^3.22.2"
50+
}
51+
}

0 commit comments

Comments
 (0)