mirror of
https://github.com/DeLaGuardo/setup-clojure.git
synced 2025-01-14 18:37:56 +08:00
50 lines
1.2 KiB
JSON
50 lines
1.2 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.0",
|
|
"@actions/io": "^1.1.1",
|
|
"@actions/tool-cache": "^1.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.3",
|
|
"@types/node": "^16.11.11",
|
|
"@types/semver": "^7.3.9",
|
|
"@typescript-eslint/parser": "^5.5.0",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"eslint": "^8.3.0",
|
|
"eslint-plugin-github": "^4.3.5",
|
|
"eslint-plugin-jest": "^25.3.0",
|
|
"jest": "^27.4.3",
|
|
"jest-circus": "^27.4.2",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "2.5.0",
|
|
"ts-jest": "^27.0.7",
|
|
"typescript": "^4.5.2"
|
|
}
|
|
}
|