-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 893 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
26
27
28
29
30
31
32
33
34
35
{
"name": "actions_bulklabels",
"version": "0.0.1",
"description": "A GitHub Action to bulk add labels when creating a new issue.",
"engines": {
"node": "^16.16.0"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "GITHUB_TOKEN='00000' GITHUB_REPOSITORY='tinkurlab/actions-playground' GITHUB_EVENT_PATH='./tests/fixtures/actionTrigger.json' jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinkurlab/issue-labeler-action.git"
},
"keywords": [
"github",
"github-action",
"github-actions"
],
"author": "Adam Zolyak",
"license": "ISC",
"bugs": {
"url": "https://github.com/tinkurlab/issue-labeler-action/issues"
},
"homepage": "https://www.tinkurlab.com",
"dependencies": {
"@octokit/rest": "^19.0.5",
"dotenv": "^16.0.3"
},
"devDependencies": {
"jest": "^27.5.0"
}
}