-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
36
37
38
39
40
41
{
"name": "respond-to-issue-based-on-label",
"version": "2.0.0",
"description": "Act on issues when specific labels are added.",
"main": "index.js",
"scripts": {
"build": "babel src/ -d lib/",
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js",
"prepublish": "yarn run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hramos/respond-to-issue-based-on-label.git"
},
"keywords": [
"actions",
"issues",
"labels",
"label triggers"
],
"author": "Héctor Ramos",
"license": "MIT",
"bugs": {
"url": "https://github.com/hramos/respond-to-issue-based-on-label/issues"
},
"homepage": "https://github.com/hramos/respond-to-issue-based-on-label#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.1",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-flow": "^7.9.0",
"flow-bin": "^0.121.0",
"prettier": "1.19.1"
}
}