-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.82 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": "@cumulusds/aws-apig-bypass",
"version": "1.1.0",
"description": "Client for API Gateway handlers, bypassing API Gateway by directly invoking the Lambda",
"repository": "https://github.com/CumulusDS/aws-apig-bypass",
"author": "Cumulus Digital Systems",
"license": "MIT",
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=21.0.0"
},
"main": "lib/index.js",
"files": [
"README.md",
"lib/*",
"package.json"
],
"scripts": {
"build": "yarn run build:license-checker && tsc",
"build:flowtypes": "find lib -type f -name '*.d.ts' -exec sh -c 'yarn flowgen --add-flow-header $1 -o ${1%.*.*}.js.flow' _ '{}' \\;",
"build:license-checker": "license-checker --csv --out var/licenses.csv",
"clean": "shx rm -rf lib",
"flow": "echo this is not a flow project",
"git:commit": "git add package.json .yarn/versions && git commit -m v${npm_package_version}",
"git:commit:publish": "git add package.json .yarn/versions/* && git commit -m v${npm_package_version}",
"git:commit:version": "git add .yarn/versions/* && git commit -m 'Deferred version bump'",
"git:push": "git push --follow-tags",
"git:tag": "git tag -a v${npm_package_version} -m v${npm_package_version}",
"npm:tag:remove": "yarn npm tag remove ${npm_package_name} $0",
"prepack": "yarn run build && yarn run build:flowtypes",
"prerelease": "yarn version apply && yarn run version:feature $0",
"publish:patch": "yarn version patch && yarn publish:sync",
"publish:minor": "yarn version minor && yarn publish:sync",
"publish:major": "yarn version major && yarn publish:sync",
"publish:prepatch": "yarn run version:prepatch && yarn run git:push",
"publish:prerelease": "yarn npm publish",
"publish:sync": "yarn run git:commit && yarn run git:tag && yarn git:push",
"test": "yarn run test:jest && yarn run test:lint && yarn run test:prettier",
"test:jest": "jest --color",
"test:lint": "eslint src/**/*.ts test/**/*.ts",
"test:prettier": "prettier --list-different \"{src,test}/**/*.ts\"",
"version:patch": "yarn version --new-version patch",
"version:minor": "yarn version --new-version minor",
"version:major": "yarn version --new-version major",
"version:feature": "yarn version ${npm_package_version}-$0.$(git describe | rev | cut -d '-' -f 2 | rev).g$(git rev-parse --short HEAD)",
"version:prepatch": "yarn version --new-version prepatch",
"version:prerelease": "yarn version ${npm_package_version}"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node",
"coverageDirectory": "var/coverage/test",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1460.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.24.7",
"@types/aws-lambda": "^8.10.145",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"flowgen": "^1.21.0",
"git-describe": "^4.0.4",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"prettier": "^3.3.3",
"shx": "^0.3.2",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]"
}