generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.27 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "action-milestone-comment",
"version": "2.0.0",
"description": "GitHub Action to Comment on Milestone Issues and Pull Requests",
"main": "index.js",
"jest": {
"testTimeout": 30000
},
"scripts": {
"build": "ncc build index.js -o dist --source-map --license licenses.txt",
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\"",
"lint": "eslint .",
"test": "jest",
"all": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bflad/action-milestone-comment.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Brian Flad",
"license": "MIT",
"bugs": {
"url": "https://github.com/bflad/action-milestone-comment/issues"
},
"homepage": "https://github.com/bflad/action-milestone-comment#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.2.0"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@octokit/rest": "^20.1.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.6.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"nock": "^14.0.0-beta.7"
}
}