Files
sccache-action/package.json
Sylvestre Ledru 78aedbbd3e adjust the URLs
2023-03-08 22:51:33 +01:00

49 lines
1.4 KiB
JSON

{
"name": "sccache-action",
"version": "0.0.1",
"description": "Github Action for Sccache",
"main": "dist/setup/index.js",
"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.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^18.14.6",
"@vercel/ncc": "^0.36.1",
"jest": "^27.5.1",
"jest-circus": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1"
}
}