-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@balena/compose",
"version": "6.0.0",
"description": "Complete toolkit to build docker-compose.yml files and optionally deploy them to balenaCloud",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"CHANGELOG.md",
"README.md"
],
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"clean": "rimraf dist",
"lint": "balena-lint lib/ typings/ test/ && tsc --noEmit",
"copy": "npm run copy:secrets && npm run copy:schemas",
"copy:schemas": "ncp lib/parse/schemas dist/parse/schemas --filter='schemas($|.*\\.json)'",
"copy:secrets": "ncp lib/multibuild/build-secrets dist/multibuild/build-secrets --filter='build-secrets($|.Dockerfile.*)'",
"build": "npm run clean && tsc --project ./ && npm run copy",
"test": "npm run lint && ts-mocha --project ./tsconfig.test.json",
"prettify": "balena-lint --project ./tsconfig.test.json --fix lib/ typings/ test/",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/balena-compose.git"
},
"author": "Balena Inc. <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/balena-io-modules/balena-compose/issues"
},
"homepage": "https://github.com/balena-io-modules/balena-compose#readme",
"devDependencies": {
"@balena/lint": "^7.3.0",
"@types/chai-as-promised": "^7.1.3",
"@types/docker-modem": "^3.0.6",
"@types/dockerode": "^3.3.23",
"@types/duplexify": "^3.6.1",
"@types/event-stream": "^4.0.0",
"@types/js-yaml": "^4.0.1",
"@types/jsesc": "^3.0.1",
"@types/JSONStream": "npm:@types/jsonstream@^0.8.33",
"@types/klaw": "^3.0.3",
"@types/lodash": "^4.14.181",
"@types/memoizee": "^0.4.11",
"@types/mocha": "^10.0.1",
"@types/mz": "^2.7.4",
"@types/node": "^20.14.11",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^7.3.5",
"@types/tar-stream": "^2.2.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"common-tags": "^1.8.2",
"mocha": "^10.2.0",
"ncp": "^2.0.0",
"pinejs-client-core": "^7.2.0",
"proxyquire": "^2.1.3",
"rimraf": "^5.0.1",
"ts-mocha": "^10.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"ajv": "^6.12.3",
"docker-file-parser": "^1.0.7",
"docker-modem": "^5.0.3",
"docker-progress": "^5.1.0",
"dockerfile-ast": "^0.2.1",
"dockerode": "^4.0.2",
"duplexify": "^4.1.2",
"event-stream": "^4.0.1",
"fp-ts": "^2.8.1",
"io-ts": "^2.2.9",
"io-ts-reporters": "^1.2.2",
"js-yaml": "^4.1.0",
"jsesc": "^3.0.2",
"JSONStream": "^1.3.5",
"klaw": "^4.0.1",
"lodash": "^4.17.19",
"memoizee": "^0.4.15",
"mz": "^2.7.0",
"p-map": "^4.0.0",
"semver": "^7.3.5",
"stream-to-promise": "^3.0.0",
"tar-stream": "^3.1.6",
"tar-utils": "^3.0.2",
"typed-error": "^3.2.1"
},
"peerDependencies": {
"pinejs-client-core": "^6.14.13 || ^7.0.0"
},
"versionist": {
"publishedAt": "2024-12-11T16:35:28.033Z"
}
}