1
0
mirror of https://github.com/benjlevesque/short-sha.git synced 2026-07-04 07:39:20 +02:00
Files
short-sha/package.json
T
2026-05-09 19:51:06 +02:00

45 lines
1.1 KiB
JSON

{
"name": "short-sha",
"version": "0.0.0",
"private": true,
"description": "Github Action to shorten the git SHA1 and make it accessible in outputs",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjlevesque/short-sha.git"
},
"keywords": [
"actions",
"git"
],
"author": "benjlevesque",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@typescript-eslint/parser": "^5.41.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"jest-circus": "^29.2.2",
"js-yaml": "^4.1.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}