setup-cpp/package.json

101 lines
2.9 KiB
JSON

{
"name": "setup-cpp",
"version": "0.9.1",
"description": "Install all the tools required for building and testing C++/C projects.",
"repository": "https://github.com/aminya/setup-cpp",
"license": "Apache-2.0",
"author": "Amin Yahyaabadi",
"main": "./dist/setup_cpp.js",
"source": "./src/main.ts",
"bin": {
"setup-cpp": "./dist/setup_cpp.js",
"setup_cpp": "./dist/setup_cpp.js"
},
"scripts": {
"build": "cross-env NODE_ENV=production parcel build --detailed-report && npm run copy.matchers",
"build.docker": "pnpm build && docker build -f ./building/docker/debian_node.dockerfile -t setup_cpp .",
"bump": "ncu -u -x execa",
"clean": "shx rm -rf dist exe",
"copy.matchers": "shx cp ./src/gcc/gcc_matcher.json ./dist/ && shx cp ./src/msvc/msvc_matcher.json ./dist && shx cp ./src/python/python_matcher.json ./dist/ && shx cp ./src/llvm/llvm_matcher.json ./dist/ ",
"dev": "cross-env NODE_ENV=development parcel watch",
"format": "prettier --write .",
"lint": "eslint . --fix",
"pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./building/scripts/pack-exe.js",
"prepare": "npm run build",
"start.docker": "docker run -t setup_cpp .",
"test": "run-p test.format test.lint test.tsc test.unit",
"test.format": "prettier . --check",
"test.lint": "eslint .",
"test.tsc": "tsc --noEmit",
"test.unit": "jest --runInBand"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"execa": "^5.1.1",
"mri": "^1.2.0",
"msvc-dev-cmd": "git://github.com/aminya/msvc-dev-cmd#9f672c1",
"semver": "^7.3.5",
"setup-python": "https://github.com/actions/setup-python#7f80679172b057fc5e90d70d197929d454754a5a",
"untildify": "^4.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^27.4.0",
"@types/mri": "^1.1.1",
"@types/node": "^17.0.17",
"@types/semver": "^7.3.9",
"@types/which": "^2.0.1",
"caxa": "^2.1.0",
"cross-env": "7.0.3",
"cross-spawn": "^7.0.3",
"eslint-config-atomic": "^1.16.6",
"jest": "^27.5.1",
"npm-run-all2": "^5.0.2",
"parcel": "^2.3.1",
"prettier-config-atomic": "^3.0.3",
"shx": "0.3.4",
"terser-config-atomic": "^0.1.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=12.x"
},
"keywords": [
"github-actions",
"actions",
"github",
"setup-cpp",
"c++",
"cpp",
"cxx",
"cc",
"llvm",
"clang",
"gcc",
"mingw",
"msvc",
"cl",
"cmake",
"ninja",
"meson"
],
"pnpm": {
"overrides": {
"semver": "7.3.5"
}
},
"targets": {
"main": {
"context": "node",
"includeNodeModules": true,
"optimize": true
}
}
}