-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "docker-compose-cli-generator",
"version": "1.0.0",
"description": "Generate docker compose file from CLI",
"main": "app.js",
"bin": "build/app.js",
"scripts": {
"build": "rimraf ./build && tsc && cp -r ./src/templates ./build",
"start": "npm run build && node build/app.js",
"start:dev": "nodemon",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "npm run build && rm -rf bin/ && npx pkg . -o bin/dccg"
},
"pkg": {
"assets": [
"build/templates/**/*"
],
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Navino16/docker-compose-cli-generator.git"
},
"keywords": [
"docker",
"cli",
"compose"
],
"author": "Navino16",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Navino16/docker-compose-cli-generator/issues"
},
"homepage": "https://github.com/Navino16/docker-compose-cli-generator#readme",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"nodemon": "^3.0.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"handlebars": "^4.7.8",
"inquirer": "^8.2.6"
}
}