-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "discord-githook",
"version": "3.0.0",
"description": "Route GitHub and GitLab webhook requests to discord.",
"author": "KhaaZ#0001",
"license": "MIT",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"superagent": "^5.2.2"
},
"optionalDependencies": {
"pm2": "^4.2.3"
},
"devDependencies": {
"@axonteam/eslint-config": "^2.2.1",
"eslint": "^6.8.0"
},
"scripts": {
"lint:js": "eslint src/",
"start": "node src/app.js",
"start:pm2": "node scripts/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Khaazz/Discord-GitHook.git"
},
"bugs": {
"url": "https://github.com/Khaazz/Discord-GitHook/issues"
},
"homepage": "https://github.com/Khaazz/Discord-GitHook#readme",
"keywords": [
"github",
"gitlab",
"discord",
"webhooks",
"router",
"api"
]
}