mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 07:06:56 +00:00
Bumps [jest-when](https://github.com/timkindberg/jest-when) from 3.5.2 to 3.6.0. - [Release notes](https://github.com/timkindberg/jest-when/releases) - [Commits](https://github.com/timkindberg/jest-when/compare/v3.5.2...v3.6.0) --- updated-dependencies: - dependency-name: jest-when dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "vault-action",
|
|
"version": "0.1.0",
|
|
"description": "A Github Action that allows you to consume vault secrets as secure environment variables.",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/entry.js -o dist",
|
|
"test": "jest",
|
|
"test:integration:basic": "jest -c integrationTests/basic/jest.config.js",
|
|
"test:integration:enterprise": "jest -c integrationTests/enterprise/jest.config.js",
|
|
"test:integration:e2e": "jest -c integrationTests/e2e/jest.config.js",
|
|
"test:integration:e2e-tls": "jest -c integrationTests/e2e-tls/jest.config.js"
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"dist/**/*"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hashicorp/vault-action.git"
|
|
},
|
|
"keywords": [
|
|
"hashicorp",
|
|
"vault",
|
|
"github",
|
|
"actions",
|
|
"github-actions",
|
|
"javascript"
|
|
],
|
|
"author": "HashiCorp",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/hashicorp/vault-action/issues"
|
|
},
|
|
"homepage": "https://github.com/hashicorp/vault-action#readme",
|
|
"dependencies": {
|
|
"got": "^11.8.6",
|
|
"jsonata": "^2.0.3",
|
|
"jsrsasign": "^11.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@actions/core": ">=1 <2"
|
|
},
|
|
"devDependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"jest": "^29.5.0",
|
|
"jest-when": "^3.6.0",
|
|
"mock-http-server": "^1.4.5"
|
|
}
|
|
}
|