-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "transfer-issue-webhook",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"tunnel": "smee --path /api/github/webhooks",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint . && prettier --check .",
"lint:fix": "prettier --write . && eslint --fix ."
},
"author": "",
"type": "module",
"license": "MIT",
"dependencies": {
"@octokit/auth-app": "^4.0.9",
"@octokit/core": "^4.2.0",
"@octokit/graphql": "^5.0.5",
"@octokit/webhooks": "^10.7.0",
"@probot/octokit-plugin-config": "^1.1.6",
"deepmerge": "^4.3.0",
"logform": "^2.5.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^22.0.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^56.0.0",
"jest": "^29.5.0",
"prettier": "2.8.8"
},
"transform": {}
}