create-or-update-comment/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2019-11-24 15:44:26 +08:00
{
"name": "create-or-update-comment",
"version": "3.0.0",
2019-11-24 15:44:26 +08:00
"description": "Create or update an issue or pull request comment",
"main": "lib/main.js",
2019-11-24 15:44:26 +08:00
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest --passWithNoTests"
2019-11-24 15:44:26 +08:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/create-or-update-comment.git"
},
"keywords": [
"actions",
"create",
"update",
"comment"
],
2019-11-24 15:44:26 +08:00
"author": "Peter Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/peter-evans/create-or-update-comment/issues"
},
"homepage": "https://github.com/peter-evans/create-or-update-comment#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
2019-11-24 15:44:26 +08:00
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.38.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.8.7",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
2019-11-24 15:44:26 +08:00
}
}