-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 956 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 956 Bytes
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
{
"name": "@ose4g/webhook-cli",
"bin": {
"webhook-cli": "./index.js"
},
"description": "cli application to allow easy testing and development of webhooks",
"scripts": {
"prepublish": "npm run format",
"format": "prettier --write .",
"preversion": "npm run format",
"version": "npm run format && git add .",
"postversion": "git push && git push --tags"
},
"version": "1.3.0",
"main": "index.js",
"repository": "git@github.com:Ose-4g/webhook-cli.git",
"author": "<osemudiamenitua@gmail.com>",
"bugs": {
"url": "https://github.com/Ose-4g/webhook-cli.git/issues"
},
"homepage": "https://github.com/Ose-4g/webhook-cli.git#readme",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"chalk": "^4.1.2",
"commander": "^9.1.0",
"socket.io-client": "^4.4.1"
},
"devDependencies": {
"prettier": "^2.6.2"
},
"keywords": [
"cli",
"webhook",
"proxy",
"dev"
]
}