gitextract_1diqkh3z/ ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github/ │ └── workflows/ │ └── pipeline.yml ├── .gitignore ├── .husky/ │ ├── commit-msg │ └── pre-commit ├── .nvmrc ├── .prettierignore ├── .vscode/ │ └── settings.json ├── .yarn/ │ ├── plugins/ │ │ └── @yarnpkg/ │ │ ├── plugin-postinstall-dev.cjs │ │ └── plugin-version.cjs │ ├── releases/ │ │ └── yarn-berry.cjs │ └── versions/ │ ├── 5de4ad7d.yml │ ├── 8c36e5ca.yml │ ├── a06bc2e2.yml │ ├── a857885b.yml │ ├── ab14bd23.yml │ ├── ada3831a.yml │ └── adb1294a.yml ├── .yarnrc.yml ├── LICENSE ├── README.md ├── babel.config.js ├── clearAfterEach.js ├── commitlint.config.js ├── e2e/ │ ├── global-setup/ │ │ ├── globalSetup.js │ │ ├── globalTeardown.js │ │ ├── jest-dynalite-config.js │ │ ├── jest.config.js │ │ ├── package.json │ │ └── src/ │ │ ├── keystore.js │ │ └── keystore.test.js │ ├── jest-27/ │ │ ├── jest-dynalite-config.js │ │ ├── jest.config.js │ │ ├── package.json │ │ └── src/ │ │ ├── keystore.js │ │ └── keystore.test.js │ ├── monorepo/ │ │ ├── jest.config.js │ │ ├── package.json │ │ └── packages/ │ │ └── keystore/ │ │ ├── jest-dynalite-config.js │ │ ├── jest.config.js │ │ ├── package.json │ │ └── src/ │ │ ├── keystore.js │ │ └── keystore.test.js │ └── preset/ │ ├── jest-dynalite-config.js │ ├── jest.config.js │ ├── package.json │ └── src/ │ ├── keystore.js │ └── keystore.test.js ├── environment.js ├── jest-preset.js ├── jest.base.ts ├── jest.config.ts ├── jest.unit.config.ts ├── package.json ├── setupTables.js ├── src/ │ ├── __snapshots__/ │ │ └── environment.spec.ts.snap │ ├── __testdir__/ │ │ └── jest-dynalite-config.js │ ├── clearAfterEach.ts │ ├── config.spec.ts │ ├── config.ts │ ├── db.ts │ ├── dynamodb/ │ │ ├── v2.ts │ │ └── v3.ts │ ├── environment.spec.ts │ ├── environment.ts │ ├── index.ts │ ├── setup.ts │ ├── setupTables.ts │ ├── types.ts │ └── utils.ts ├── tests/ │ ├── configs/ │ │ ├── cjs/ │ │ │ ├── jest-dynalite-config.cjs │ │ │ └── tables.js │ │ ├── javascript/ │ │ │ ├── jest-dynalite-config.js │ │ │ └── tables.js │ │ ├── tables-function/ │ │ │ └── jest-dynalite-config.ts │ │ ├── tables-function-async/ │ │ │ └── jest-dynalite-config.ts │ │ └── tables.ts │ ├── jest-advanced.config.ts │ ├── jest-cjs.config.ts │ ├── jest-dynalite-config.ts │ ├── jest-jsdom-environment.ts │ ├── jest-sdk-v2.config.ts │ ├── jest-simple.config.ts │ ├── jest-tables-function-async.config.ts │ ├── jest-tables-function-js.config.ts │ ├── jest-tables-function.config.ts │ ├── setups/ │ │ ├── setupAdvanced.ts │ │ ├── setupAdvancedEnv.ts │ │ ├── setupCjs.ts │ │ ├── setupDynamodbV2.ts │ │ ├── setupSimple.ts │ │ ├── setupTablesFunction.ts │ │ ├── setupTablesFunctionAsync.ts │ │ └── setupTablesFunctionJs.ts │ └── suites/ │ ├── modern-timers.test.ts │ ├── suite1.test.ts │ ├── suite2.test.ts │ ├── table-data.test.ts │ └── timers.test.ts ├── tsconfig.build.json ├── tsconfig.eslint.json ├── tsconfig.json ├── types/ │ └── dynalite.d.ts └── withDb.js