Files
setup-just/package.json
T
2021-03-26 19:04:10 +02:00

36 lines
1.1 KiB
JSON

{
"name": "setup-just",
"version": "1.4.0",
"description": "Install the just command runner",
"main": "dist/index.js",
"scripts": {
"fmt": "node node_modules/.bin/prettier --write **/*.ts",
"lint": "node node_modules/.bin/eslint **/*.ts",
"build": "rm -rf dist/ && ncc build src/index.ts --minify",
"run": "npm run build && RUNNER_TOOL_CACHE=./runner/cache RUNNER_TEMP=./runner/temp node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extractions/setup-just.git"
},
"author": "Ross MacArthur <ross@macarthur.io>",
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/extractions/setup-just/issues"
},
"homepage": "https://github.com/extractions/setup-just#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@extractions/setup-crate": "^0.2.1"
},
"devDependencies": {
"@types/node": "^14.11.6",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}