UNPKG

@octopusdeploy/step-packages-public-feed-encryption

Version:

A package that facilitates the generation of an encrypted signature for step package public feed. The encryption method follows the convention of [AWS Signature Version 4](https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html).

26 lines (24 loc) 665 B
const path = require("path"); module.exports = { preset: "ts-jest/presets/js-with-ts", globals: { "ts-jest": { tsConfig: path.resolve("jest.tsconfig.json"), }, }, projects: [ { displayName: "test", transform: { ".(ts)": "ts-jest", }, transformIgnorePatterns: ["/node_modules/", "\\.pnp\\.[^\\/]+$", ".json"], testEnvironment: "jsdom", testRegex: "__tests__/.*\\.(test|spec)\\.(ts)$", moduleDirectories: ["<rootDir>/src/", "node_modules"], moduleFileExtensions: ["ts", "js"], setupFilesAfterEnv: ["jest-expect-message", "jest-extended"], resetMocks: true, }, ], };