mirror of https://github.com/aminya/setup-cpp
81 lines
2.0 KiB
JSON
81 lines
2.0 KiB
JSON
{
|
|
"name": "setup-cpp",
|
|
"version": "0.1.0",
|
|
"author": "Amin Yahyaabadi",
|
|
"description": "Install all the tools required for building and testing C++/C projects.",
|
|
"repository": "https://github.com/aminya/setup-cpp",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"lint": "eslint . --fix",
|
|
"clean": "shx rm -rf dist exe",
|
|
"dev": "cross-env NODE_ENV=development parcel watch",
|
|
"build": "cross-env NODE_ENV=production parcel build --detailed-report",
|
|
"prepare": "git submodule update --init --recursive && npm run build",
|
|
"test.format": "prettier . --check",
|
|
"test.lint": "eslint .",
|
|
"test.tsc": "tsc --noEmit",
|
|
"test.unit": "jest",
|
|
"test": "run-p test.format test.lint test.tsc test.unit",
|
|
"pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./building/pack-exe.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.x"
|
|
},
|
|
"main": "./dist/main.js",
|
|
"source": "./src/main.ts",
|
|
"targets": {
|
|
"main": {
|
|
"context": "node",
|
|
"includeNodeModules": true,
|
|
"optimize": true
|
|
}
|
|
},
|
|
"prettier": "prettier-config-atomic",
|
|
"dependencies": {
|
|
"@actions/core": "^1.5.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/io": "^1.1.1",
|
|
"@actions/tool-cache": "^1.7.1",
|
|
"hasha": "^5.2.2",
|
|
"semver": "^7.3.5",
|
|
"which": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.1",
|
|
"@types/node": "^16.9.1",
|
|
"@types/semver": "^7.3.8",
|
|
"@types/which": "^2.0.1",
|
|
"caxa": "^2.1.0",
|
|
"cross-env": "7.0.3",
|
|
"eslint-config-atomic": "^1.16.2",
|
|
"jest": "^27.2.0",
|
|
"npm-run-all2": "^5.0.2",
|
|
"parcel": "^2.0.0-rc.0",
|
|
"prettier-config-atomic": "^2.0.5",
|
|
"shx": "0.3.3",
|
|
"terser-config-atomic": "^0.1.1",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"keywords": [
|
|
"github-actions",
|
|
"actions",
|
|
"github",
|
|
"setup-cpp",
|
|
"c++",
|
|
"cpp",
|
|
"cxx",
|
|
"cc",
|
|
"llvm",
|
|
"clang",
|
|
"gcc",
|
|
"mingw",
|
|
"msvc",
|
|
"cl",
|
|
"cmake",
|
|
"ninja",
|
|
"meson"
|
|
]
|
|
}
|