-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@deploystack/docker-to-iac",
"version": "1.24.0",
"main": "dist/src/index.js",
"scripts": {
"pretest:e2e": "find test/e2e/output -mindepth 1 -not -name 'README.md' -delete",
"test:e2e": "ts-node test/test.ts",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsc",
"lint": "eslint 'src/**/*.{ts,js}' 'test/**/*.{ts,js}'",
"release": "release-it --config=.release-it.js"
},
"author": {
"name": "Piotr Hajdas",
"email": "hello@deploystack.io",
"url": "https://deploystack.io"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/deploystackio/docker-to-iac/issues"
},
"homepage": "https://github.com/deploystackio/docker-to-iac#readme",
"keywords": [
"Apache-2.0",
"Infrastructure as Code",
"IaC",
"CI/CD",
"DeployStack"
],
"license": "Apache-2.0",
"description": "Translate docker run and docker compose file to Infrastructure as Code",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.25.1",
"@release-it/conventional-changelog": "^10.0.1",
"@types/node": "^25.0.2",
"@types/node-fetch": "^2.6.12",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.30.1",
"@vitest/coverage-v8": "^4.0.8",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.25.0",
"globals": "^16.0.0",
"release-it": "^19.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vitest": "^4.0.8"
},
"dependencies": {
"semver": "^7.6.3",
"yaml": "^2.5.1"
}
}