@cumulusds/aws-apig-bypass 0.3.0-jnnode21.1.gaa6b5b9 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.babelrc.js ADDED
@@ -0,0 +1,15 @@
1
+ module.exports = {
2
+ presets: [
3
+ [
4
+ "@babel/preset-env",
5
+ {
6
+ targets: {
7
+ node: "10.15.0"
8
+ },
9
+ exclude: ["proposal-async-generator-functions"] // Do not transform async generator functions, since they are supported natively in Node 10 & 12.
10
+ }
11
+ ],
12
+ "@babel/preset-flow"
13
+ ],
14
+ plugins: ["@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-optional-chaining"]
15
+ };
package/.eslintrc.js ADDED
@@ -0,0 +1,15 @@
1
+ module.exports = {
2
+ extends: ["airbnb-base", "plugin:prettier/recommended", "plugin:flowtype/recommended"],
3
+ rules: {
4
+ "linebreak-style": "off",
5
+ "no-console": "off",
6
+ "no-restricted-syntax": "off"
7
+ },
8
+ plugins: ["jest", "flowtype"],
9
+ env: {
10
+ "jest/globals": true
11
+ },
12
+ parserOptions: {
13
+ ecmaVersion: 2020
14
+ }
15
+ };
package/.flowconfig ADDED
@@ -0,0 +1,13 @@
1
+ [ignore]
2
+ <PROJECT_ROOT>/node_modules/config-chain/test/broken.json
3
+ <PROJECT_ROOT>/node_modules/license-checker/tests/config/custom_format_broken.json
4
+ <PROJECT_ROOT>/lib
5
+ <PROJECT_ROOT>/node_modules/jest-resolve/node_modules/resolve/test/resolver/malformed_package_json/package.json
6
+
7
+ [libs]
8
+ node_modules/@cumulusds/flow-aws-sdk/index.js
9
+ node_modules/@cumulusds/flow-aws-sdk/clients
10
+ node_modules/@cumulusds/flow-aws-sdk/lib
11
+
12
+ [lints]
13
+ all=error