@gtrevorrow/oci-token-exchange
Version:
OCI Usder Principal Token Exchange for GitHub Actions, GitLab CI, and Bitbucket Pipelines
103 lines (102 loc) • 3.46 kB
JSON
{
"name": "@gtrevorrow/oci-token-exchange",
"description": "OCI Usder Principal Token Exchange for GitHub Actions, GitLab CI, and Bitbucket Pipelines",
"version": "1.2.2",
"author": {
"name": "Oracle Cloud Infrastructure",
"email": "gordon.trevorrow@oracle.com"
},
"private": false,
"homepage": "https://github.com/gtrevorrow/oci-token-exchange-action/blob/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/gtrevorrow/oci-token-exchange-action.git"
},
"bugs": {
"url": "https://github.com/gtrevorrow/oci-token-exchange-action/issues"
},
"keywords": [
"github",
"actions",
"oracle-cloud",
"oracle-cloud-infrastructure"
],
"exports": {
".": "./dist/main.js"
},
"bin": {
"oci-token-exchange": "./dist/cli.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"bundle": "npm run format:write && npm run package",
"format:write": "npx prettier --write \"**/*.ts\"",
"format:check": "npx prettier --check \"**/*.ts\"",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "npx ncc build src/index.ts -o dist --source-map --license LICENSE.txt",
"all": "npm run format:write && npm run lint && npm run package",
"test": "jest",
"build:cli": "ncc build src/cli.ts -o dist --source-map --license licenses.txt --target node20",
"package:cli": "npm run build:cli && npm pack",
"prepare": "husky install",
"release": "semantic-release",
"commit": "cz"
},
"files": [
"dist",
"LICENSE.txt",
"README.md"
],
"license": "UPL-1.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"axios": "^1.8.4",
"@iarna/toml": "^2.2.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/jest": "^29.5.13",
"@types/node": "^20.17.11",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"list": "^2.0.19",
"npm": "^11.0.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"semantic-release": "^22.0.0",
"test-jest": "^1.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.8.2",
"typescript-eslint": "^8.1.0"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}