-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.7 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
48
49
50
51
52
53
54
{
"name": "github-webhook-handler",
"version": "2.3.11",
"description": "",
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"lint": "eslint",
"fix": "eslint --fix",
"lint-staged": "lint-staged",
"yesno": "node -e \"const yesno = require('yesno'); yesno({ question: 'Are you sure you want to continue?' }).then(ok => process.exit(ok ? 0 : 1));\"",
"release": "test $(git rev-parse --abbrev-ref HEAD) = dev && git pull && npm version $SEMVER && npm run --silent yesno && (git push && git checkout master && git merge dev && git push --follow-tags && git checkout dev) || (git tag -d $(git describe --tags) && git reset --hard HEAD~1)",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
],
"*.js": [
"eslint --fix"
]
},
"pre-commit": "lint-staged",
"repository": {
"type": "git",
"url": "git+https://github.com/gbv/github-webhook-handler.git"
},
"author": "Stefan Peters <stefan.peters@gbv.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gbv/github-webhook-handler/issues"
},
"homepage": "https://github.com/gbv/github-webhook-handler#readme",
"devDependencies": {
"eslint": "~9.14",
"eslint-config-gbv": "~2.4",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"pre-commit": "^1.2.2",
"yesno": "^0.4.0"
},
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.1",
"lodash": "^4.17.21"
}
}