-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 858 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 858 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
{
"name": "netlify-lambda-github-webhook-router",
"version": "1.0.0",
"description": "Parsing GitHub's push Webhook to decide whether or not to trigger the build and deploy",
"main": "index.js",
"scripts": {
"lambda-serve": "netlify-lambda serve functions",
"lambda-build": "netlify-lambda build functions && node -p 'process.env'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramigs/netlify-lambda-github-webhook-router.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ramigs/netlify-lambda-github-webhook-router/issues"
},
"homepage": "https://github.com/ramigs/netlify-lambda-github-webhook-router#readme",
"dependencies": {
"dotenv": "^8.1.0",
"encoding": "^0.1.12",
"netlify-lambda": "^1.6.3",
"node-fetch": "^2.6.0"
}
}