mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-14 12:31:14 +00:00
34 lines
717 B
JSON
34 lines
717 B
JSON
{
|
|
"name": "typescript-action",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "TypeScript template action",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "YourNameOrOrganization",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.0",
|
|
"@actions/github": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.23",
|
|
"@types/node": "^12.12.11",
|
|
"jest": "^24.9.0",
|
|
"jest-circus": "^24.9.0",
|
|
"ts-jest": "^24.1.0",
|
|
"typescript": "^3.7.2"
|
|
}
|
|
}
|