-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.27 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "dockerhub-webhook",
"version": "4.0.2",
"description": "Docker hub webhook",
"license": "MIT",
"author": {
"name": "Jonas Enge",
"email": "jonas.enge@gmai.com",
"url": "https://maccyber.io"
},
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "node index.js",
"test": "standard && nsp check && tap --reporter=spec test/*.js",
"coverage": "tap test/*.js --coverage",
"coveralls": "tap --cov --coverage-report=lcov test/*.js && cat coverage/lcov.info | coveralls"
},
"keywords": [
"docker hub",
"dockerhub",
"webhook",
"continuous deployment",
"docker.io",
"webhook listener",
"autodeploy"
],
"standard": {
"ignore": [
"public"
]
},
"repository": {
"type": "git",
"url": "http://github.com/maccyber/dockerhub-webhook.git"
},
"bugs": {
"url": "http://github.com/maccyber/dockerhub-webhook/issues"
},
"devDependencies": {
"coveralls": "2.13.1",
"nsp": "2.6.2",
"standard": "10.0.2",
"tap": "10.3.2"
},
"dependencies": {
"boom": "4.3.1",
"file-exists": "3.0.2",
"good": "7.1.0",
"good-console": "6.4.0",
"good-squeeze": "5.0.2",
"hapi": "16.1.1",
"joi": "10.4.1",
"request": "2.81.0"
}
}