forked from JasonSooter/pull-request-comment-trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 854 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 854 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
26
27
28
29
{
"name": "pull-request-comment-trigger",
"version": "1.0.0",
"description": "GitHub Action to look for a 'trigger word' in a pull-request description or comment, so that later steps can know whether or not to run.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js -s",
"format": "prettier --write '*.js' --tab-width=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredly/actions-testbed.git"
},
"keywords": [],
"author": "Jason Sooter",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaredly/actions-testbed/issues"
},
"homepage": "https://github.com/jaredly/actions-testbed#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"prettier": "^3.3.3"
}
}