setup-cpp/packages/exec-powershell/package.json

38 lines
925 B
JSON
Raw Normal View History

2022-08-08 07:59:24 +08:00
{
"name": "exec-powershell",
"version": "1.0.0",
"description": "Run a powershell command.",
"repository": "https://github.com/aminya/setup-cpp",
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/exec-powershell",
2022-08-08 07:59:24 +08:00
"license": "Apache-2.0",
"author": "Amin Yahyaabadi",
"main": "./dist/index.js",
"source": "./src/index.ts",
"scripts": {
2024-08-16 06:55:02 +08:00
"build": "tsc --pretty",
2024-08-16 08:01:33 +08:00
"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"
2022-08-08 07:59:24 +08:00
},
"dependencies": {
"execa": "^7",
"which": "^4.0.0",
"@types/node": "^14"
2022-08-08 07:59:24 +08:00
},
"devDependencies": {
2024-01-22 13:31:35 +08:00
"@types/which": "^3.0.0"
2022-08-08 07:59:24 +08:00
},
"keywords": [
"powershell",
"pwsh",
"exec",
"execa",
"spawn",
"system",
"github-actions",
"github",
"actions",
"gitlab",
"ci"
]
}