-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 862 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 862 Bytes
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": "name-generator-node-action",
"version": "1.0.0",
"description": "This action creates a random name and outputs it to Github Actions environment variables. [unique-names-generator](https://github.com/andreasonny83/unique-names-generator) is used to generate the random names.",
"main": "index.js",
"scripts": {
"build": "ncc build index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TGPSKI/name-generator-node-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TGPSKI/name-generator-node-action/issues"
},
"homepage": "https://github.com/TGPSKI/name-generator-node-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"unique-names-generator": "^4.2.0"
}
}