mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-17 18:35:07 +00:00
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "github-slug-action",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"description": "Github slug action",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"release": "semantic-release",
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --source-map",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/rlespinasse/github-slug-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "rlespinasse",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.1",
|
|
"@semantic-release/exec": "^6.0.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@types/jest": "^26.0.24",
|
|
"@types/node": "^14.18.25",
|
|
"@typescript-eslint/eslint-plugin": "^5.38.1",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.0.1",
|
|
"eslint-plugin-github": "^4.3.7",
|
|
"eslint-plugin-jest": "^23.20.0",
|
|
"jest": "^26.6.3",
|
|
"jest-circus": "^26.6.3",
|
|
"js-yaml": "^3.14.1",
|
|
"prettier": "^2.7.1",
|
|
"semantic-release": "^19.0.3",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "^4.2.0"
|
|
},
|
|
"files": [
|
|
"/dist"
|
|
],
|
|
"release": {
|
|
"tagFormat": "v${version}",
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog",
|
|
[
|
|
"@semantic-release/exec",
|
|
{
|
|
"prepareCmd": "git add dist"
|
|
}
|
|
],
|
|
"@semantic-release/git",
|
|
"@semantic-release/github"
|
|
],
|
|
"branches": [
|
|
"v3.x"
|
|
]
|
|
}
|
|
}
|