forked from maccyber/micro-dockerhub-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
42
43
44
{
"name": "micro-dockerhub-hook",
"version": "1.3.0",
"description": "docker hub webhook",
"main": "index.js",
"scripts": {
"start": "micro -l tcp://${npm_config_host}:${npm_config_port}",
"dev": "micro-dev -H localhost",
"test": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maccyber/micro-dockerhub-hook.git"
},
"keywords": [
"dockerhub",
"webhook",
"automatedbuilds"
],
"author": {
"name": "Jonas Enge",
"email": "[email protected]",
"url": "https://github.com/maccyber"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maccyber/micro-dockerhub-hook/issues"
},
"homepage": "https://github.com/maccyber/micro-dockerhub-hook#readme",
"devDependencies": {
"ava": "^3.15.0",
"axios": "^0.21.1",
"coveralls": "3.0.5",
"micro-dev": "3.0.0",
"nyc": "14.1.1",
"standard": "13.1.0",
"test-listen": "1.1.0"
},
"dependencies": {
"micro": "9.3.4"
}
}