-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "composerize-ts",
"version": "0.6.2",
"description": "Turns docker run commands into docker-compose files!",
"keywords": [
"docker",
"docker-compose",
"converter"
],
"author": "Carsten Götzinger <[email protected]> (https://cgo-it.de)",
"homepage": "https://cgo-it.de",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "npm run lint && rm -rf dist && tsc && tsc --build tsconfig.esm.json && pnpm typedoc",
"lint": "eslint src/**/*.ts test/**/*.ts cli.js ./.eslintrc.js",
"doc": "pnpm typedoc",
"prepublishOnly": "rm -rf dist && rm -rf docs && pnpm run build && npm run test",
"test": "vitest",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/cgoIT/composerize-ts.git"
},
"bugs": {
"url": "https://github.com/cgoIT/composerize-ts/issues"
},
"sideEffects": false,
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"bin": {
"composerize-ts": "./cli.js"
},
"files": [
"dist/",
"cli.js"
],
"dependencies": {
"commander": "^12.0.0",
"deepmerge-ts": "^5.1.0",
"flex-js": "^1.0.5",
"ip-cidr": "^3.1.0",
"set-value": "^4.1.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/node": "^18.15.11",
"@types/set-value": "^4.0.1",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"esm": "^3.2.25",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"prettier": "^3.1.1",
"typedoc": "^0.25.7",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.1.3"
}
}