-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 755 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 755 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
{
"name": "github-webhook-tester",
"version": "0.1.3",
"description": "A Github Webhook Testing Tool",
"main": "bin/app.js",
"repository": "https://github.com/Mattamorphic/github-webhook-tester",
"scripts": {
"lint": "./node_modules/.bin/eslint bin/app.js lib/** example/** console/**"
},
"bin": {
"github-webhook-tester": "bin/app.js"
},
"author": "Mattamorphic <mfmbarber@gmail.com>",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.15.0",
"cli-color": "^1.4.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"ngrok": "^3.1.1"
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-google": "^0.14.0"
}
}