-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 886 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
38
39
40
41
42
43
{
"name": "probot-commitlint",
"version": "0.0.0-development",
"description": "A GitHub App that runs commitlint for you",
"author": "Ahmed T. Ali <ah.tajelsir@gmail.com> (https://ahmed.sd)",
"license": "MIT",
"repository": "https://github.com/z0al/commitlint-bot.git",
"keywords": [
"validate",
"commit",
"pr",
"conventional",
"git",
"probot-app"
],
"main": "index.js",
"scripts": {
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) npm start",
"start": "probot run ./index.js",
"test": "jest"
},
"files": [
"lib",
"index.js",
"README.md"
],
"dependencies": {
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/core": "^19.2.1",
"probot": "^13.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"smee-client": "^2.0.0"
},
"engines": {
"node": "21.x.x",
"npm": "10.x"
},
"jest": {
"testEnvironment": "node"
}
}