setup-clojure/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

2019-10-04 11:41:15 +02:00
{
"name": "setup-clojure",
"version": "1.0.0",
"private": true,
"description": "setup clojure action",
"main": "lib/setup-clojure.js",
"scripts": {
"build": "tsc",
2020-08-20 11:39:44 +02:00
"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"
2019-10-04 11:41:15 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeLaGuardo/setup-clojure.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "DeLaGuardo",
"license": "MIT",
"dependencies": {
2021-12-01 17:38:39 +01:00
"@actions/core": "^1.6.0",
2022-04-05 14:34:00 +02:00
"@actions/exec": "^1.1.1",
2022-03-22 15:41:09 +03:00
"@actions/http-client": "^1.0.11",
2022-04-05 14:34:00 +02:00
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^1.7.2"
2019-10-04 11:41:15 +02:00
},
"devDependencies": {
2022-04-05 14:34:00 +02:00
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
2021-12-01 17:38:39 +01:00
"@types/semver": "^7.3.9",
2022-04-05 14:34:00 +02:00
"@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",
2021-05-10 11:30:39 +02:00
"js-yaml": "^4.1.0",
2022-04-05 14:34:00 +02:00
"prettier": "2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
2019-10-04 11:41:15 +02:00
}
}