mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-17 18:35:07 +00:00
64 lines
1.6 KiB
JSON
64 lines
1.6 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": "http://github.com/rlespinasse/github-slug-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "rlespinasse",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "5.0.1",
|
|
"@semantic-release/git": "9.0.0",
|
|
"@types/jest": "^26.0.10",
|
|
"@types/node": "^14.6.0",
|
|
"@typescript-eslint/parser": "^3.9.1",
|
|
"@vercel/ncc": "^0.23.0",
|
|
"eslint": "^7.5.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^23.20.0",
|
|
"jest": "^26.4.2",
|
|
"jest-circus": "^26.4.1",
|
|
"js-yaml": "^3.14.0",
|
|
"prettier": "2.0.5",
|
|
"semantic-release": "17.0.7",
|
|
"ts-jest": "^26.3.0",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"release": {
|
|
"tagFormat": "${version}",
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/git",
|
|
"@semantic-release/github"
|
|
],
|
|
"branches": [
|
|
"v1.1.x",
|
|
"v2.x"
|
|
]
|
|
}
|
|
}
|