-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "chonkbot",
"version": "1.1.6",
"description": "How chonky are your PRs?",
"author": "Tom Bowden <tom.b1992@gmail.com>",
"license": "ISC",
"repository": "https://github.com/tpbowden/chonkbot.git",
"homepage": "https://github.com/tpbowden/chonkbot",
"bugs": "https://github.com/tpbowden/chonkbot/issues",
"keywords": [
"github-action"
],
"scripts": {
"build": "ncc build ./src/action.js -o dist",
"deploy": "vercel -c --prod -t $VERCEL_TOKEN",
"eslint": "eslint .",
"prettier": "prettier --check .",
"release": "semantic-release",
"test": "APP_ID=1 WEBHOOK_SECRET=mysecret PRIVATE_KEY=$(cat ./test/fixtures/key.pem) jest"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "5.1.1",
"@octokit/rest": "19.0.13",
"probot": "12.2.9",
"vercel": "28.0.2"
},
"devDependencies": {
"@octokit/webhooks-methods": "3.0.3",
"@semantic-release/git": "10.0.1",
"@vercel/ncc": "0.34.0",
"eslint": "8.23.1",
"eslint-plugin-jest": "26.8.7",
"jest": "29.0.3",
"nock": "13.2.9",
"node-fetch": "2.6.13",
"nodemon": "2.0.22",
"prettier": "2.7.1",
"semantic-release": "19.0.5"
},
"engines": {
"node": ">= 12.0.0"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"dist/**/*.js",
"package.json"
]
}
],
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
},
"packageManager": "yarn@3.2.4"
}