mirror of
https://github.com/DeLaGuardo/setup-clojure.git
synced 2024-12-27 00:16:21 +08:00
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "setup-clojure",
|
|
"version": "10.3",
|
|
"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.1",
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/http-client": "^2.1.0",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^18.15.11",
|
|
"@types/semver": "^7.3.13",
|
|
"@typescript-eslint/parser": "^5.58.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.38.0",
|
|
"eslint-plugin-github": "^4.7.0",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"jest": "^29.5.0",
|
|
"jest-circus": "^29.5.0",
|
|
"js-yaml": "^4.1.0",
|
|
"npm-check-updates": "^16.10.8",
|
|
"prettier": "2.8.7",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|