-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "hookido",
"version": "7.0.0",
"description": "Hapi plugin for handling AWS SNS http(s) subscriptions aka webhooks",
"main": "index.js",
"scripts": {
"lint": "eslint --ext '.js' lib test *.js",
"watch": "mocha --watch 'test/**/*.js' 'lib/**/*.js' '*.js' --timeout 500",
"test": "npm run lint && nyc --reporter=text-summary --reporter=lcov mocha --exit 'test/**/*.test.js'",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:\" * %s\"",
"release": "npm run test && release-it -n -i patch",
"release:minor": "npm run test && release-it -n -i minor",
"release:major": "npm run test && release-it -n -i major"
},
"engines": {
"node": ">=20.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/martinj/hookido"
},
"keywords": [
"sns",
"webhook",
"hapi"
],
"author": "Martin Jonsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinj/hookido/issues"
},
"homepage": "https://github.com/martinj/hookido",
"dependencies": {
"@aws-sdk/client-sns": "^3.731.1",
"@hapi/hoek": "^11.0.7",
"joi": "^17.13.3",
"sns-validator": "^0.3.5"
},
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"@hapi/hapi": "^21.3.12",
"aws-sdk-client-mock": "^4.1.0",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"mocha": "^11.0.1",
"nyc": "^15.1.0",
"release-it": "^2.7.3",
"sinon": "^19.0.2"
}
}