-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 958 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
36
37
{
"name": "post-to-pr",
"version": "0.0.1",
"description": "Post to pull request with previous build results",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint *.js && jest --collect-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EliLillyCo/github-actions-post-to-pr.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Eli Lilly",
"bugs": {
"url": "https://github.com/EliLillyCo/github-actions-post-to-pr"
},
"homepage": "https://github.com/EliLillyCo/github-actions-post-to-pr",
"dependencies": {
"@actions/artifact": "^0.3.2",
"@actions/core": "^1.9.1",
"@actions/github": "2.2.0"
},
"devDependencies": {
"@octokit/fixtures": "21.0.5",
"@vercel/ncc": "^0.36.1",
"eslint": "^6.3.0",
"eslint-plugin-jest": "^23.13.0",
"jest": "^24.9.0"
}
}