-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 1.71 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "push-docker-image",
"version": "1.1.0",
"description": "Push docker image .tar.gz files to a docker registry.",
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"docker",
"registry",
"image",
"container",
"push"
],
"main": "lib/pushDockerImage.js",
"bin": "bin/push-docker-image",
"files": [
"lib/",
"bin",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint . bin/push-docker-image",
"test:unit": "ava --timeout=5s --no-cache 'test/**/*Spec.js'",
"test:unit:with-coverage": "nyc npm run test:unit",
"test": "npm run lint && npm run test:unit:with-coverage",
"coveralls": "cat ./build/lcov.info | coveralls"
},
"author": "Mathias Schreck <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/holidaycheck/push-docker-image.git"
},
"dependencies": {
"docker-parse-image": "3.0.1",
"gunzip-maybe": "1.4.1",
"hasha": "5.0.0",
"node-fetch": "2.6.0",
"noop3": "1000.0.0",
"pipe-streams-to-promise": "0.2.0",
"pretty-bytes": "5.2.0",
"ramda": "0.26.1",
"rimraf": "2.6.3",
"tar-fs": "2.0.0",
"tmp": "0.1.0"
},
"devDependencies": {
"ava": "1.4.1",
"coveralls": "3.0.3",
"eslint": "5.16.0",
"eslint-config-holidaycheck": "0.13.1",
"nyc": "14.1.1",
"pr-log": "3.1.0",
"sinon": "7.3.2",
"test-listen": "1.1.0"
},
"nyc": {
"all": true,
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 75,
"exclude": [
"build",
"test",
"result"
],
"reporter": [
"lcov",
"text-summary"
],
"check-coverage": true,
"report-dir": "build"
}
}