initial commit

This commit is contained in:
Michael Shick 2019-11-22 17:12:31 -05:00
commit 3d8df2a501
No known key found for this signature in database
GPG key ID: ADF5BC9704BB4A61
21 changed files with 6283 additions and 0 deletions

34
package.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "add-pr-comment",
"version": "1.0.0",
"description": "JavaScript Action Template",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/core": "^1.1.1"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}