-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.35 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.35 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": "docker-delta",
"version": "5.0.16",
"description": "Generate binary filesystem diffs between docker images to speed up distribution",
"type": "module",
"main": "out/docker-delta.js",
"engines": {
"node": ">=22.22.0 <23.0.0 || >=24.13.0"
},
"scripts": {
"lint-fix": "balena-lint -t tsconfig.dev.json --fix -e js -e ts lib/ test/",
"lint": "balena-lint -t tsconfig.dev.json -e js -e ts lib/ test/",
"test": "bash ./test.sh",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && npx tsc"
},
"author": "Balena Ltd.",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/node-docker-delta.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@balena/lint": "^9.3.12",
"@types/dockerode": "^4.0.1",
"@types/node": "^22.19.8",
"chai": "^6.2.2",
"chai-events": "0.0.3",
"chai-stream": "0.0.0",
"husky": "^9.1.7",
"JSONStream": "^1.3.5",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"typescript": "^5.9.3"
},
"dependencies": {
"docker-toolbelt": "^7.0.0",
"dockerode": "^4.0.9",
"p-timeout": "^7.0.1",
"tmp-promise": "^3.0.3",
"typed-error": "^3.2.2"
},
"versionist": {
"publishedAt": "2026-03-26T17:22:06.508Z"
}
}