1
0
Fork 0
toolkit/packages/oidc-client/package.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2021-07-01 02:41:28 +00:00
{
2021-07-20 03:28:34 +00:00
"name": "@souravchanduka/oidc-client",
2021-07-01 02:41:28 +00:00
"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",
2021-07-20 03:28:34 +00:00
"all": "npm run build && npm run format && npm run package && npm test",
"tsc":"tsc",
"type": "module"
2021-07-01 02:41:28 +00:00
},
"repository": {
"type": "git",
2021-07-20 03:28:34 +00:00
"url": "git+https://github.com/souravchanduka/toolkit.git"
2021-07-01 02:41:28 +00:00
},
"keywords": [
"actions",
"node",
"setup"
],
2021-07-20 03:28:34 +00:00
"directories": {
"lib": "lib",
"test": "__tests__"
},
"author": "Sourav Chanduka",
2021-07-01 02:41:28 +00:00
"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"
2021-07-20 03:28:34 +00:00
},
"bugs": {
"url": "https://github.com/souravchanduka/toolkit/issues"
},
"homepage": "https://github.com/souravchanduka/toolkit#readme"
}