-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.07 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": "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": "^16"
},
"scripts": {
"pretest": "eslint --ignore-path .gitignore . && eslint bin/out.js",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"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": "^6.12.3",
"ajv-errors": "^1.0.1",
"ajv-keywords": "^3.4.0",
"lodash": "^4.17.21",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^6.2.2",
"jest": "^24.1.0",
"js-combinatorics": "^0.5.4"
},
"jest": {
"coverageReporters": [
"json",
"html",
"lcov"
]
}
}