-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "docker-delta",
"version": "4.1.0",
"description": "Generate binary filesystem diffs between docker images to speed up distribution",
"main": "out/docker-delta",
"scripts": {
"prettify": "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 { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\" && npx tsc"
},
"author": "Balena Ltd.",
"license": "Apache-2.0",
"devDependencies": {
"@balena/lint": "^7.2.4",
"@types/bluebird": "^3.5.42",
"@types/dockerode": "^3.3.23",
"@types/node": "^16.18.63",
"chai": "^4.3.10",
"chai-events": "0.0.3",
"chai-stream": "0.0.0",
"event-stream": "3.3.5",
"husky": "^8.0.3",
"JSONStream": "^1.3.5",
"lint-staged": "^15.1.0",
"mocha": "^10.2.0",
"typescript": "^5.3.2"
},
"dependencies": {
"bluebird": "^3.7.2",
"docker-toolbelt": "^6.0.2",
"dockerode": "^4.0.2",
"tmp-promise": "^3.0.3",
"typed-error": "^3.2.2"
},
"versionist": {
"publishedAt": "2024-07-05T16:16:07.253Z"
}
}