setup-clojure/package.json
Kirill Chernyshov d2ddd6fe91
Use 'Bearer gh-token' instead of 'token gh-token'
to authenticate GH API calls

* Upgrade node-version to 20.10.0
* Upgrade dependencies
* Upgrade base node version to run action on
* Correct authentication token format
2024-01-05 12:38:24 +01:00

54 lines
1.4 KiB
JSON

{
"name": "setup-clojure",
"version": "12.2",
"private": true,
"description": "setup clojure action",
"main": "lib/setup-clojure.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build ./lib/setup-clojure.js --source-map",
"test": "jest",
"update-deps": "ncu -u",
"release": "npm run build && npm run format && npm run lint && npm run package",
"all": "npm run release && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeLaGuardo/setup-clojure.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "DeLaGuardo",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/semver": "^7.5.6",
"@typescript-eslint/parser": "^6.17.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}