├── .github └── workflows │ ├── publish.yaml │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── index.ts ├── jest.config.js ├── package.json ├── src ├── EncryptedEnv.ts ├── cli.ts ├── index.ts ├── runSetPasswordScripts.ts └── scripts │ ├── setPassword.ps1 │ └── setPassword.sh ├── test └── unit │ └── EncryptedEnv.test.ts └── tsconfig.json /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/package.json -------------------------------------------------------------------------------- /src/EncryptedEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/src/EncryptedEnv.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/runSetPasswordScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/src/runSetPasswordScripts.ts -------------------------------------------------------------------------------- /src/scripts/setPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/src/scripts/setPassword.ps1 -------------------------------------------------------------------------------- /src/scripts/setPassword.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/src/scripts/setPassword.sh -------------------------------------------------------------------------------- /test/unit/EncryptedEnv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/test/unit/EncryptedEnv.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractkit/env-enc/HEAD/tsconfig.json --------------------------------------------------------------------------------