mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-02-25 17:15:47 +00:00
59 lines
1.7 KiB
JSON
59 lines
1.7 KiB
JSON
{
|
|
"name": "setup-maven",
|
|
"version": "5.1.0",
|
|
"private": true,
|
|
"description": "setup maven action",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "yarn ncc build -o dist src/setup-maven.ts",
|
|
"test": "node node_modules/jest/bin/jest.js",
|
|
"format": "yarn prettier \"{,!(dist)/**/}*.{ts,js*,yml,md}\" --write",
|
|
"format-check": "yarn prettier \"{,!(dist)/**/}*.{ts,js*,yml,md}\" --check",
|
|
"lint": "yarn format-check && yarn eslint \"{,!(dist)/**/}*.{ts,js}\"",
|
|
"ncc": "node node_modules/@vercel/ncc/dist/ncc/cli.js",
|
|
"prettier": "node node_modules/prettier/bin-prettier.js --ignore-path .gitignore",
|
|
"eslint": "node node_modules/eslint/bin/eslint.js --ignore-path .gitignore"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"maven",
|
|
"setup"
|
|
],
|
|
"author": "stCarolas",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/exec": "^1.0.0",
|
|
"@actions/http-client": "^1.0.8",
|
|
"@actions/tool-cache": "^1.3.1",
|
|
"semver": "^6.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^12.0.4",
|
|
"@types/semver": "^6.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.20.0",
|
|
"@typescript-eslint/parser": "^4.20.0",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"eslint": "^7.23.0",
|
|
"eslint-config-prettier": ">=8.0.0",
|
|
"eslint-plugin-jest": "^24.3.0",
|
|
"jest": "^27.2.5",
|
|
"prettier": "^1.17.1",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^3.5.1"
|
|
},
|
|
"resolutions": {
|
|
"**/color-convert/color-name": "~1.1.4",
|
|
"**/escodegen/optionator": "^0.9.1",
|
|
"eslint/@babel/code-frame": "^7.12.13"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"arrowParens": "avoid"
|
|
}
|
|
}
|