mirror of
https://github.com/aminya/setup-cpp
synced 2024-11-30 21:22:30 +08:00
19bf09e888
BREAKING no default keys are added during apt installations anymore. Explicitly pass the keys needed. BREAKING the arguments to addAptKeyViaServer and addAptKeyViaDownload has changed. addAptKeyViaDownload renamed to addAptKeyViaURL
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "setup-brew",
|
|
"version": "1.0.0",
|
|
"description": "Setup brew and brew packages",
|
|
"repository": "https://github.com/aminya/setup-cpp",
|
|
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/setup-brew",
|
|
"license": "Apache-2.0",
|
|
"author": "Amin Yahyaabadi",
|
|
"main": "./dist/index.js",
|
|
"source": "./src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --pretty",
|
|
"dev": "tsc --watch --pretty",
|
|
"lint.tsc": "tsc --noEmit --pretty",
|
|
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
|
|
"prepublishOnly": "pnpm run build",
|
|
"test": "jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "^12",
|
|
"ci-log": "workspace:*",
|
|
"envosman": "workspace:*",
|
|
"which": "4.0.0",
|
|
"execa": "^7.2.0",
|
|
"setup-apt": "workspace:*",
|
|
"node-downloader-helper": "2.1.9"
|
|
},
|
|
"devDependencies": {
|
|
"path-exists": "5.0.0",
|
|
"patha": "0.4.1",
|
|
"cross-spawn": "7.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"keywords": [
|
|
"setup",
|
|
"brew",
|
|
"install",
|
|
"brew-install",
|
|
"cask",
|
|
"formula",
|
|
"package",
|
|
"setup-brew",
|
|
"repositories",
|
|
"macos",
|
|
"homebrew",
|
|
"linuxbrew",
|
|
"osx",
|
|
"linux",
|
|
"ubuntu"
|
|
]
|
|
}
|