Add node modules and package files

This commit is contained in:
Rachael Sewell
2019-09-06 15:17:38 -07:00
parent e84489cd02
commit 714607abe9
165 changed files with 2227 additions and 4644 deletions

View File

@@ -1,15 +1,24 @@
{
"name": "hello-world-action",
"name": "hello-world-javascript-action",
"version": "1.0.0",
"description": "My first JavaScript action",
"description": "This action prints \"Hello World\" or \"Hello\" + the name of a person to greet to the log.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/hello-world-javascript-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/actions/hello-world-javascript-action/issues"
},
"homepage": "https://github.com/actions/hello-world-javascript-action#readme",
"dependencies": {
"@actions/core": "file:toolkit/actions-core-0.0.0.tgz",
"@actions/github": "file:toolkit/actions-github-0.0.0.tgz"
"@actions/core": "^1.1.0",
"@actions/github": "^1.1.0"
}
}