forked from linuxacademy/content-javascript-actions-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 937 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "content-javascript-actions-app",
"version": "1.0.0",
"description": "This action prints \"Hello World\" or \"Hello\" + the name of a person to greet to the log. To learn how this action was built, see \"[Creating a JavaScript action](https://help.github.com/en/articles/creating-a-javascript-action)\" in the GitHub Help documentation.",
"main": "index.js",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MuruArumugam/content-javascript-actions-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MuruArumugam/content-javascript-actions-app/issues"
},
"homepage": "https://github.com/MuruArumugam/content-javascript-actions-app#readme"
}