mirror of
https://github.com/Mozilla-Actions/sccache-action.git
synced 2026-04-08 17:42:13 +08:00
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "sccache-action",
|
|
"version": "0.0.5",
|
|
"description": "Github Action for Sccache",
|
|
"main": "dist/setup/index.js",
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"scripts": {
|
|
"build-dist": "ncc build lib/setup.js -m -o dist/setup/ && ncc build lib/show_stats.js -m -o dist/show_stats",
|
|
"build": "prettier --write **/*.ts && tsc && npm run build-dist",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint **/*.ts --cache",
|
|
"test": "jest --passWithNoTests"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mozilla-actions/sccache-action.git"
|
|
},
|
|
"keywords": [
|
|
"sccache"
|
|
],
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/mozilla-actions/sccache-action/issues"
|
|
},
|
|
"homepage": "https://github.com/mozilla-actions/sccache-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.13.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
"@typescript-eslint/parser": "^7.11.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jest": "^28.6.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.7.0",
|
|
"jest-circus": "^29.7.0",
|
|
"prettier": "^3.3.2",
|
|
"ts-jest": "^29.2.2",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|