mirror of
https://github.com/benjlevesque/short-sha.git
synced 2025-12-06 01:37:51 +01:00
45 lines
1.2 KiB
JSON
45 lines
1.2 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",
|
|
"all": "yarn build && yarn format && yarn lint && yarn pack && yarn test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/benjlevesque/short-sha.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"git"
|
|
],
|
|
"author": "benjlevesque",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.0",
|
|
"@actions/github": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.15",
|
|
"@types/node": "^14.14.7",
|
|
"@typescript-eslint/parser": "^4.7.0",
|
|
"@vercel/ncc": "^0.25.1",
|
|
"eslint": "^7.13.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^24.1.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"jest": "^26.6.3",
|
|
"jest-circus": "^26.6.3",
|
|
"js-yaml": "^3.13.1",
|
|
"prettier": "^2.1.2",
|
|
"ts-jest": "^26.4.4",
|
|
"typescript": "^4.0.5"
|
|
}
|
|
} |