forked from maccyber/micro-dockerhub-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "micro-dockerhub-hook",
"version": "1.1.0",
"description": "docker hub webhook",
"main": "index.js",
"scripts": {
"start": "micro",
"dev": "micro-dev -H localhost",
"test": "standard && nsp check && 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": "jonas.enge@gmail.com",
"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": "^0.25.0",
"axios": "^0.17.1",
"coveralls": "^3.0.0",
"micro-dev": "^2.2.0",
"nsp": "^3.1.0",
"nyc": "^11.4.1",
"standard": "^10.0.3",
"test-listen": "^1.1.0"
},
"dependencies": {
"micro": "^9.1.0"
}
}