2021-09-14 14:50:57 +08:00
|
|
|
{
|
|
|
|
"name": "setup-cpp",
|
2022-04-25 09:39:44 +08:00
|
|
|
"version": "0.13.1",
|
2021-09-14 14:57:47 +08:00
|
|
|
"description": "Install all the tools required for building and testing C++/C projects.",
|
2021-09-14 14:50:57 +08:00
|
|
|
"repository": "https://github.com/aminya/setup-cpp",
|
|
|
|
"license": "Apache-2.0",
|
2021-10-08 09:00:00 +08:00
|
|
|
"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"
|
|
|
|
},
|
2021-09-14 14:50:57 +08:00
|
|
|
"scripts": {
|
2022-02-20 18:11:34 +08:00
|
|
|
"build": "run-p test.tsc build.parcel copy.matchers",
|
2022-02-15 16:25:37 +08:00
|
|
|
"build.docker": "pnpm build && docker build -f ./building/docker/ubuntu_node.dockerfile -t setup_cpp .",
|
2022-04-25 07:53:34 +08:00
|
|
|
"build.parcel": "shx rm -rf ./dist/*.js ./dist/*.js.map && cross-env NODE_ENV=production parcel build --detailed-report",
|
2022-04-16 15:31:57 +08:00
|
|
|
"bump": "ncu -u -x execa && pnpm update",
|
2022-02-14 12:16:18 +08:00
|
|
|
"clean": "shx rm -rf .parcel-cache dist exe",
|
2022-04-25 07:53:34 +08:00
|
|
|
"copy.matchers": "shx rm -rf ./dist/*.json && 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/ ",
|
2021-09-14 14:50:57 +08:00
|
|
|
"dev": "cross-env NODE_ENV=development parcel watch",
|
2021-10-08 09:00:00 +08:00
|
|
|
"format": "prettier --write .",
|
|
|
|
"lint": "eslint . --fix",
|
|
|
|
"pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./building/scripts/pack-exe.js",
|
2021-12-05 22:16:28 +08:00
|
|
|
"prepare": "npm run build",
|
2021-10-08 09:00:00 +08:00
|
|
|
"start.docker": "docker run -t setup_cpp .",
|
2022-03-12 09:48:28 +08:00
|
|
|
"test": "run-p test.format test.lint test.cspell test.tsc test.unit",
|
|
|
|
"test.cspell": "cspell lint --no-progress --show-suggestions",
|
2021-09-14 15:49:18 +08:00
|
|
|
"test.format": "prettier . --check",
|
|
|
|
"test.lint": "eslint .",
|
2022-04-19 09:31:50 +08:00
|
|
|
"test.tsc": "tsc --noEmit | loose-ts-check",
|
2021-10-08 09:00:00 +08:00
|
|
|
"test.unit": "jest --runInBand"
|
2021-09-14 14:50:57 +08:00
|
|
|
},
|
|
|
|
"prettier": "prettier-config-atomic",
|
2021-09-14 19:12:17 +08:00
|
|
|
"dependencies": {
|
2021-09-30 08:58:41 +08:00
|
|
|
"@actions/core": "^1.6.0",
|
2022-04-05 07:13:42 +08:00
|
|
|
"@actions/exec": "^1.1.1",
|
|
|
|
"@actions/io": "^1.1.2",
|
|
|
|
"@actions/tool-cache": "^1.7.2",
|
2021-12-01 18:26:05 +08:00
|
|
|
"execa": "^5.1.1",
|
2021-09-18 01:51:59 +08:00
|
|
|
"mri": "^1.2.0",
|
2022-02-20 18:11:34 +08:00
|
|
|
"msvc-dev-cmd": "github:aminya/msvc-dev-cmd#9f672c1",
|
2022-04-18 21:16:11 +08:00
|
|
|
"numerous": "1.0.3",
|
2022-04-16 15:31:57 +08:00
|
|
|
"semver": "7.3.7",
|
2022-04-19 09:29:17 +08:00
|
|
|
"setup-python": "github:actions/setup-python#v3.1.2",
|
2022-04-18 21:16:11 +08:00
|
|
|
"time-delta": "github:aminya/time-delta#69d91a41cef28e569be9a2991129f5f7d1f0d00e",
|
2021-12-05 22:20:14 +08:00
|
|
|
"untildify": "^4.0.0",
|
|
|
|
"which": "^2.0.2"
|
2021-09-14 19:12:17 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-09-17 18:21:00 +08:00
|
|
|
"@types/cross-spawn": "^6.0.2",
|
2022-03-02 05:56:24 +08:00
|
|
|
"@types/jest": "^27.4.1",
|
2021-09-18 01:51:59 +08:00
|
|
|
"@types/mri": "^1.1.1",
|
2022-04-16 15:31:57 +08:00
|
|
|
"@types/node": "^17.0.24",
|
2021-10-21 11:08:25 +08:00
|
|
|
"@types/semver": "^7.3.9",
|
2021-09-15 01:40:42 +08:00
|
|
|
"@types/which": "^2.0.1",
|
2021-09-15 14:29:57 +08:00
|
|
|
"caxa": "^2.1.0",
|
2021-09-14 14:50:57 +08:00
|
|
|
"cross-env": "7.0.3",
|
2021-09-17 18:21:00 +08:00
|
|
|
"cross-spawn": "^7.0.3",
|
2022-04-16 15:31:57 +08:00
|
|
|
"cspell": "^5.19.7",
|
|
|
|
"eslint": "^8.13.0",
|
2022-04-05 07:13:42 +08:00
|
|
|
"eslint-config-atomic": "^1.17.1",
|
2022-02-12 08:36:17 +08:00
|
|
|
"jest": "^27.5.1",
|
2022-04-19 09:31:50 +08:00
|
|
|
"loose-ts-check": "^1.2.0",
|
2022-04-16 15:31:57 +08:00
|
|
|
"npm-check-updates": "^12.5.9",
|
2021-09-14 16:18:36 +08:00
|
|
|
"npm-run-all2": "^5.0.2",
|
2022-04-05 07:13:42 +08:00
|
|
|
"parcel": "^2.4.1",
|
2022-04-16 15:31:57 +08:00
|
|
|
"prettier": "2.6.2",
|
2022-04-05 07:13:42 +08:00
|
|
|
"prettier-config-atomic": "^3.0.9",
|
2022-01-23 09:33:54 +08:00
|
|
|
"shx": "0.3.4",
|
2021-09-14 14:50:57 +08:00
|
|
|
"terser-config-atomic": "^0.1.1",
|
2022-04-05 07:13:42 +08:00
|
|
|
"ts-jest": "^27.1.4",
|
|
|
|
"typescript": "^4.6.3"
|
2021-09-14 14:50:57 +08:00
|
|
|
},
|
2021-10-08 09:00:00 +08:00
|
|
|
"engines": {
|
|
|
|
"node": ">=12.x"
|
|
|
|
},
|
2021-09-14 14:50:57 +08:00
|
|
|
"keywords": [
|
|
|
|
"github-actions",
|
|
|
|
"actions",
|
|
|
|
"github",
|
|
|
|
"setup-cpp",
|
|
|
|
"c++",
|
|
|
|
"cpp",
|
|
|
|
"cxx",
|
|
|
|
"cc",
|
|
|
|
"llvm",
|
|
|
|
"clang",
|
|
|
|
"gcc",
|
|
|
|
"mingw",
|
|
|
|
"msvc",
|
|
|
|
"cl",
|
|
|
|
"cmake",
|
|
|
|
"ninja",
|
|
|
|
"meson"
|
2021-10-08 09:00:00 +08:00
|
|
|
],
|
|
|
|
"pnpm": {
|
|
|
|
"overrides": {
|
2022-04-16 15:31:57 +08:00
|
|
|
"semver": "7.3.7",
|
|
|
|
"eslint": "^8.13.0",
|
|
|
|
"prettier": "2.6.2",
|
2022-04-18 20:30:53 +08:00
|
|
|
"lru-cache": "7.8.1",
|
2022-02-20 18:11:34 +08:00
|
|
|
"core-js": "*",
|
|
|
|
"babel-eslint": "npm:@babel/eslint-parser"
|
|
|
|
},
|
|
|
|
"peerDependencyRules": {
|
|
|
|
"allowedVersions": {
|
|
|
|
"eslint": "*"
|
|
|
|
}
|
2021-10-08 09:00:00 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"targets": {
|
|
|
|
"main": {
|
|
|
|
"context": "node",
|
|
|
|
"includeNodeModules": true,
|
|
|
|
"optimize": true
|
|
|
|
}
|
|
|
|
}
|
2021-09-14 14:50:57 +08:00
|
|
|
}
|