mirror of https://github.com/actions/toolkit
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "@dwivedine/oidc-client",
|
||
|
"version": "1.0.9",
|
||
|
"description": "To get id token from oidc provider",
|
||
|
"main": "lib/main.js",
|
||
|
"types": "lib/main.d.ts",
|
||
|
"scripts": {
|
||
|
"build": "tsc",
|
||
|
"format": "prettier --write **/*.ts",
|
||
|
"format-check": "prettier --check **/*.ts",
|
||
|
"package": "ncc build --source-map --license licenses.txt",
|
||
|
"test": "jest",
|
||
|
"all": "npm run build && npm run format && npm run package && npm test"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/dwivedine/toolkit.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"actions",
|
||
|
"node",
|
||
|
"setup"
|
||
|
],
|
||
|
"author": "Neha Dwivedi",
|
||
|
"license": "MIT",
|
||
|
"dependencies": {
|
||
|
"@actions/core": "^1.2.6",
|
||
|
"@actions/http-client": "^1.0.11",
|
||
|
"@octokit/core": "^3.4.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/jest": "^26.0.15",
|
||
|
"@types/node": "^14.14.9",
|
||
|
"@typescript-eslint/parser": "^4.8.1",
|
||
|
"@vercel/ncc": "^0.25.1",
|
||
|
"eslint": "^7.17.0",
|
||
|
"eslint-plugin-github": "^4.1.3",
|
||
|
"eslint-plugin-jest": "^24.1.3",
|
||
|
"jest": "^26.6.3",
|
||
|
"jest-circus": "^26.6.3",
|
||
|
"js-yaml": "^3.14.0",
|
||
|
"prettier": "2.2.1",
|
||
|
"ts-jest": "^26.4.4",
|
||
|
"typescript": "^4.1.3"
|
||
|
}
|
||
|
}
|