-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "balena-preload",
"version": "17.0.0",
"description": "Preload balena OS images with a user application container",
"license": "Apache-2.0",
"author": "Balena Ltd (https://balena.io)",
"main": "build/preload.js",
"types": "build/preload.d.ts",
"engines": {
"node": ">=18"
},
"keywords": [
"balena",
"balenaos",
"image",
"docker",
"container"
],
"files": [
"build/",
"src/preload.py",
"Dockerfile",
"requirements.txt"
],
"dependencies": {
"balena-sdk": "^20.1.3",
"compare-versions": "^3.6.0",
"docker-progress": "^5.0.0",
"dockerode": "^4.0.2",
"get-port": "^3.2.0",
"lodash": "^4.17.21",
"node-cleanup": "^2.1.2",
"tar-fs": "^2.1.1"
},
"devDependencies": {
"@balena/lint": "^7.2.6",
"@types/dockerode": "^3.3.23",
"@types/node": "^18.0.0",
"@types/request-promise": "^4.1.48",
"@types/tar-fs": "^2.0.1",
"catch-uncommitted": "^2.0.0",
"typescript": "^5.6.2"
},
"homepage": "https://github.com/balena-io/balena-preload",
"repository": {
"type": "git",
"url": "https://github.com/balena-io/balena-preload.git"
},
"bugs": {
"url": "https://github.com/balena-io/balena-preload/issues"
},
"scripts": {
"lint": "balena-lint --fix lib",
"lint-python": "flake8 src/preload.py",
"test": "tsc --noEmit && npm run lint && catch-uncommitted --skip-node-versionbot-changes",
"prepare": "tsc"
},
"versionist": {
"publishedAt": "2024-10-21T16:20:33.756Z"
}
}