setup-cpp/package.json

143 lines
5.1 KiB
JSON
Raw Normal View History

{
"name": "setup-cpp",
2022-07-11 10:32:25 +08:00
"version": "0.18.0",
2021-09-14 14:57:47 +08:00
"description": "Install all the tools required for building and testing C++/C projects.",
"repository": "https://github.com/aminya/setup-cpp",
"license": "Apache-2.0",
2021-10-08 09:00:00 +08:00
"author": "Amin Yahyaabadi",
2022-07-06 12:19:58 +08:00
"exports": {
"import": "./dist/setup-cpp.mjs",
"require": "./dist/setup-cpp.js"
},
2021-10-08 09:00:00 +08:00
"main": "./dist/setup_cpp.js",
2022-07-06 12:19:58 +08:00
"module": "./dist/setup_cpp.mjs",
2021-10-08 09:00:00 +08:00
"source": "./src/main.ts",
"bin": {
"setup-cpp": "./dist/setup_cpp.js",
"setup_cpp": "./dist/setup_cpp.js"
},
"scripts": {
"build": "shx rm -rf dist/ && shx mkdir ./dist && run-p test.tsc build.parcel copy.matchers",
2022-04-27 13:07:54 +08:00
"build.docker": "pnpm build && docker build -f ./dev/docker/ubuntu_node.dockerfile -t setup_cpp .",
"build.docker.arch": "pnpm build && docker build -f ./dev/docker/arch_node.dockerfile -t setup_cpp:arch .",
2022-07-11 10:32:01 +08:00
"build.docker.fedora": "pnpm build && docker build -f ./dev/docker/fedora_node.dockerfile -t setup_cpp:fedora .",
"build.docker.ubuntu": "pnpm build && docker build -f ./dev/docker/ubuntu_node.dockerfile -t setup_cpp:ubuntu .",
"build.parcel": "cross-env NODE_ENV=production parcel build --detailed-report",
"bump": "ncu -u -x execa,numerous && pnpm update",
2022-02-14 12:16:18 +08:00
"clean": "shx rm -rf .parcel-cache 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",
2021-10-08 09:00:00 +08:00
"format": "prettier --write .",
"lint": "eslint . --fix",
2022-04-27 13:07:54 +08:00
"pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./dev/scripts/pack-exe.js",
"prepare": "npm run build",
2021-10-08 09:00:00 +08:00
"start.docker": "docker run -t setup_cpp .",
"start.docker.arch": "docker run -t setup_cpp:arch .",
2022-07-11 10:32:01 +08:00
"start.docker.fedora": "docker run -t setup_cpp:fedora .",
"start.docker.ubuntu": "docker run -t setup_cpp:ubuntu .",
2022-05-21 09:32:41 +08:00
"test": "run-p test.format test.lint test.cspell test.tsc test.unit",
2022-03-12 09:48:28 +08:00
"test.cspell": "cspell lint --no-progress --show-suggestions",
"test.docker.arch": "docker build -f ./dev/docker/arch_node.dockerfile --target base -t setup_cpp:arch-base . && container-structure-test test --image setup_cpp:arch-base --config ./dev/container-tests/arch.yml",
2022-07-11 10:32:01 +08:00
"test.docker.fedora": "docker build -f ./dev/docker/fedora_node.dockerfile --target base -t setup_cpp:fedora-base . && container-structure-test test --image setup_cpp:fedora-base --config ./dev/container-tests/fedora.yml",
"test.docker.ubuntu": "docker build -f ./dev/docker/ubuntu_node.dockerfile --target base -t setup_cpp:ubuntu-base . && container-structure-test test --image setup_cpp:ubuntu-base --config ./dev/container-tests/ubuntu.yml",
2021-09-14 15:49:18 +08:00
"test.format": "prettier . --check",
"test.lint": "eslint .",
"test.tsc": "tsc --noEmit | loose-ts-check",
2021-10-08 09:00:00 +08:00
"test.unit": "jest --runInBand"
},
"prettier": "prettier-config-atomic",
"dependencies": {
2022-06-18 05:00:54 +08:00
"@actions/core": "^1.9.0",
2022-04-05 07:13:42 +08:00
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2",
2022-05-21 09:32:41 +08:00
"@actions/tool-cache": "^2.0.1",
"escape-path-with-spaces": "^1.0.0",
"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-07-17 09:15:08 +08:00
"setup-python": "github:actions/setup-python#c474c82340438924daab9282d07300bfe7e3692d",
2022-04-18 21:16:11 +08:00
"time-delta": "github:aminya/time-delta#69d91a41cef28e569be9a2991129f5f7d1f0d00e",
"ubuntu-version": "^2.0.0",
2021-12-05 22:20:14 +08:00
"untildify": "^4.0.0",
"which": "^2.0.2"
},
"devDependencies": {
2021-09-17 18:21:00 +08:00
"@types/cross-spawn": "^6.0.2",
2022-07-17 09:12:17 +08:00
"@types/jest": "^28.1.6",
2021-09-18 01:51:59 +08:00
"@types/mri": "^1.1.1",
2022-07-17 09:12:17 +08:00
"@types/node": "^18.0.5",
2022-06-18 05:00:54 +08:00
"@types/semver": "^7.3.10",
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",
"cross-env": "7.0.3",
2021-09-17 18:21:00 +08:00
"cross-spawn": "^7.0.3",
2022-07-17 09:12:17 +08:00
"cspell": "^6.2.3",
"eslint": "^8.20.0",
2022-06-26 08:30:17 +08:00
"eslint-config-atomic": "^1.18.1",
2022-07-17 09:12:17 +08:00
"jest": "^28.1.3",
"loose-ts-check": "^1.2.0",
2022-07-17 09:12:17 +08:00
"npm-check-updates": "^15.3.4",
2022-06-18 05:00:54 +08:00
"npm-run-all2": "^6.0.1",
2022-06-26 08:30:17 +08:00
"parcel": "2.6.2",
2022-06-18 05:00:54 +08:00
"prettier": "2.7.1",
2022-06-26 08:30:17 +08:00
"prettier-config-atomic": "^3.0.10",
2022-01-23 09:33:54 +08:00
"shx": "0.3.4",
"terser-config-atomic": "^0.1.1",
2022-07-17 09:12:17 +08:00
"ts-jest": "^28.0.7",
2022-06-18 05:00:54 +08:00
"typescript": "^4.7.4"
},
2021-10-08 09:00:00 +08:00
"engines": {
"node": ">=12.x"
},
"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",
2022-07-17 09:12:17 +08:00
"eslint": "^8.20.0",
2022-06-18 05:00:54 +08:00
"prettier": "2.7.1",
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,
2022-07-06 12:19:58 +08:00
"optimize": true,
"outputFormat": "commonjs"
},
"module": {
"context": "node",
"includeNodeModules": true,
"optimize": true,
"outputFormat": "esmodule"
2021-10-08 09:00:00 +08:00
}
}
}