mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-14 12:31:14 +00:00
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "sticky-pull-request-comment",
|
|
"version": "2.0.1",
|
|
"private": true,
|
|
"description": "Create comment on pull request, if exists update that comment.",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"build_test": "tsc && jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "marocchino",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.20",
|
|
"@types/node": "^14.14.31",
|
|
"@typescript-eslint/parser": "^4.15.2",
|
|
"@vercel/ncc": "^0.27.0",
|
|
"eslint": "^7.20.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^24.1.5",
|
|
"jest": "^25.5.4",
|
|
"jest-circus": "^26.6.3",
|
|
"js-yaml": "^4.0.0",
|
|
"prettier": "2.2.1",
|
|
"ts-jest": "^25.5.1",
|
|
"typescript": "^3.9.9"
|
|
}
|
|
}
|