-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.56 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
47
{
"name": "rupert-the-bot",
"version": "1.0.0",
"private": true,
"description": "This is a Github app",
"author": "Jagoda Cubrilo",
"license": "ISC",
"homepage": "https://github.com/Jagoda11/rupert-the-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"start": "echo '🚀 Starting the app...' && probot run ./index.js",
"test": "echo '🧪 Running tests...' && jest --config jest.config.cjs --coverage",
"lint": "echo '🧹 Linting code...' && eslint './**/*.js'",
"format": "echo '🖋️ Formatting code...' && prettier --write .",
"precommit": "echo '🔒 Precommit: Linting and testing code...' && npm run lint && npm test",
"pretest": "echo '🔎 Pretest: Linting code...' && npm run lint",
"watch": "echo '👀 Watching files...' && jest --watch",
"debug": "echo '🐞 Starting the app in debug mode...' && NODE_ENV=development nodemon --inspect ./index.js",
"clean": "echo '🧽 Cleaning up...' && rm -rf ./node_modules && rm package-lock.json"
},
"dependencies": {
"@octokit/webhooks": "^13.5.0",
"@probot/adapter-aws-lambda-serverless": "^4.0.1",
"probot": "^13.4.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.7",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nock": "^14.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"smee-client": "^2.0.4"
},
"engines": {
"node": ">= 18"
},
"type": "module"
}