-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 994 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 994 Bytes
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
{
"name": "@mittwald/container-deploy",
"version": "1.0.0",
"description": "Reusable orchestration and API adapters for building and deploying containerized projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mittwald/container-deploy.git"
},
"keywords": [
"containers",
"deployment",
"orchestration",
"typescript",
"buildkit"
],
"author": "Lars Bergmann <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@mittwald/api-client": "^4.331.0"
},
"peerDependenciesMeta": {
"@mittwald/api-client": {
"optional": false
}
},
"devDependencies": {
"@mittwald/api-client": "^4.331.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}