mirror of
https://github.com/DeLaGuardo/setup-clojure.git
synced 2024-12-29 01:49:44 +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.2.4",
|
|
"@actions/exec": "^1.0.4",
|
|
"@actions/io": "^1.0.2",
|
|
"@actions/tool-cache": "^1.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.7",
|
|
"@types/node": "^14.0.25",
|
|
"@typescript-eslint/parser": "^3.7.0",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"@types/semver": "^6.2.1",
|
|
"eslint": "^7.5.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^23.18.0",
|
|
"jest": "^24.9.0",
|
|
"jest-circus": "^26.1.0",
|
|
"js-yaml": "^3.14.0",
|
|
"prettier": "2.0.5",
|
|
"ts-jest": "^24.3.0",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
}
|