forked from homedepot/github-webhook-resource
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 999 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 999 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
39
40
41
42
{
"name": "github-webhook",
"version": "1.0.0",
"description": "A Concourse resource for manipulating Github webhooks",
"repository": {
"type": "git",
"url": "https://github.com/homedepot/github-webhook-resource.git"
},
"engines": {
"node": "^25"
},
"scripts": {
"pretest": "eslint . && eslint bin/out.js",
"test": "jest --coverage",
"debug-out-create": "cat payload-create | node --nolazy --inspect-brk=9229 bin/out.js",
"debug-out-delete": "cat payload-delete | node --nolazy --inspect-brk=9229 bin/out.js"
},
"license": "ISC",
"dependencies": {
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-keywords": "^5.1.0",
"got": "^11.8.6",
"lodash": "^4.17.23"
},
"devDependencies": {
"eslint": "^10.0.0",
"jest": "^30.2.0"
},
"jest": {
"coverageReporters": [
"json",
"html",
"lcov"
]
},
"overrides": {
"minimatch": "^10.2.4",
"glob": "^13.0.6",
"test-exclude": "^8.0.0"
}
}