1
0
mirror of https://github.com/benjlevesque/short-sha.git synced 2025-12-06 09:47:49 +01:00
Files
short-sha/package.json
Benjamin LEVESQUE 9f96a4f558 short-sha
2020-03-09 22:00:34 +01: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",
"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": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.21.0",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"js-yaml": "^3.13.1",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.6.4"
}
}