-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "git-deploy",
"version": "2.0.0",
"description": "Automatically execute a deploy script by running a Node.js server that listens to a Github/bitbucket webhook. Also works behind VPN/firewalls through a Smee.io outbound proxy",
"main": "src/index.js",
"private": true,
"author": "Manuel Di Iorio",
"repository": {
"type": "git",
"url": "https://github.com/manuel-di-iorio/git-deploy.git"
},
"license": "MIT",
"devDependencies": {
"eslint-config-semistandard": "^15.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.15",
"semistandard": "^16.0.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-github-webhook": "^1.0.6",
"helmet": "^4.1.1",
"pino": "^6.3.2",
"pino-pretty": "^4.0.0",
"smee-client": "^1.0.1"
},
"scripts": {
"start": "node .",
"watch": "nodemon -q"
}
}