Permalink
Cannot retrieve contributors at this time
59 lines (59 sloc)
1.62 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
github-script/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "github-script", | |
"description": "A GitHub action for executing a simple script", | |
"version": "6.4.0", | |
"author": "GitHub", | |
"license": "MIT", | |
"main": "dist/index.js", | |
"private": true, | |
"scripts": { | |
"build": "ncc build src/main.ts", | |
"format:check": "prettier --check src __test__", | |
"format:write": "prettier --write src __test__", | |
"lint": "eslint src __test__", | |
"style:check": "run-p --continue-on-error --aggregate-output format:check lint", | |
"style:write": "run-p --continue-on-error --aggregate-output format:write lint", | |
"pre-commit": "run-s style:write test build", | |
"test": "jest", | |
"prepare": "husky install" | |
}, | |
"jest": { | |
"preset": "ts-jest", | |
"testEnvironment": "node", | |
"globals": { | |
"ts-jest": { | |
"diagnostics": { | |
"ignoreCodes": [ | |
"151001" | |
] | |
} | |
} | |
} | |
}, | |
"dependencies": { | |
"@actions/core": "^1.10.0", | |
"@actions/exec": "^1.1.0", | |
"@actions/github": "^5.0.0", | |
"@actions/glob": "^0.3.0", | |
"@actions/io": "^1.1.1", | |
"@octokit/core": "^3.5.1", | |
"@octokit/plugin-request-log": "^1.0.4", | |
"@octokit/plugin-retry": "^3.0.9", | |
"node-fetch": "^2.6.7" | |
}, | |
"devDependencies": { | |
"@types/jest": "^27.0.2", | |
"@types/node-fetch": "^2.6.2", | |
"@typescript-eslint/eslint-plugin": "^3.10.1", | |
"@typescript-eslint/parser": "^3.10.1", | |
"@vercel/ncc": "^0.36.0", | |
"eslint": "^7.32.0", | |
"eslint-config-prettier": "^6.15.0", | |
"husky": "^7.0.0", | |
"jest": "^27.2.5", | |
"npm-run-all": "^4.1.5", | |
"prettier": "^2.0.5", | |
"ts-jest": "^27.0.5", | |
"typescript": "^4.3.5" | |
} | |
} |