mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-13 09:43:44 +00:00
Bumps [cacheable-request](https://github.com/jaredwray/cacheable-request) to 10.2.7 and updates ancestor dependency [got](https://github.com/sindresorhus/got). These dependencies need to be updated together. Updates `cacheable-request` from 7.0.2 to 10.2.7 - [Release notes](https://github.com/jaredwray/cacheable-request/releases) - [Commits](https://github.com/jaredwray/cacheable-request/commits) Updates `got` from 11.8.5 to 12.5.3 - [Release notes](https://github.com/sindresorhus/got/releases) - [Commits](https://github.com/sindresorhus/got/compare/v11.8.5...v12.5.3) --- updated-dependencies: - dependency-name: cacheable-request dependency-type: indirect - dependency-name: got dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@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:e2e": "jest -c integrationTests/e2e/jest.config.js",
|
|
"test: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": "^12.5.3",
|
|
"jsonata": "^1.8.6",
|
|
"jsrsasign": "^10.6.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@actions/core": ">=1 <2"
|
|
},
|
|
"devDependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@vercel/ncc": "^0.36.0",
|
|
"jest": "^29.3.1",
|
|
"jest-when": "^3.5.2",
|
|
"mock-http-server": "^1.4.5"
|
|
}
|
|
}
|