-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.54 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
{
"name": "github-pull-request-reminder",
"version": "1.0.0",
"description": "Sends reminders of open merge requests in GitLab",
"main": "index.js",
"scripts": {
"build": "tsc ./.build/*.ts --noEmit",
"commit": "cz",
"release": "semantic-release",
"docker-build": "(cd ./reminder && docker build -t bottlecapdave/github-pull-request-reminder:latest .)",
"docker-release": "(cd ./reminder && docker tag bottlecapdave/github-pull-request-reminder:latest bottlecapdave/github-pull-request-reminder:$TAG && docker push bottlecapdave/github-pull-request-reminder:latest && docker push bottlecapdave/github-pull-request-reminder:$TAG)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BottlecapDave/GitHub-Pull-Request-Reminder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BottlecapDave/GitHub-Pull-Request-Reminder/issues"
},
"homepage": "https://github.com/BottlecapDave/GitHub-Pull-Request-Reminder#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"commitizen": "4.3.1",
"conventional-changelog-eslint": "6.0.0",
"cz-customizable": "7.2.1",
"husky": "9.1.6",
"semantic-release": "24.2.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}