setup-clojure/package.json
Kirill Chernyshov 2c4f3b9416
Release 5.0
2022-04-05 14:34:00 +02:00

51 lines
1.3 KiB
JSON

{
"name": "setup-clojure",
"version": "1.0.0",
"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 --source-map",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeLaGuardo/setup-clojure.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "DeLaGuardo",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^1.0.11",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^1.7.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/semver": "^7.3.9",
"@typescript-eslint/parser": "^5.18.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.12.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.1.3",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}