Add part3

This commit is contained in:
Andrew Trieu
2023-05-23 08:05:53 +03:00
parent 41757b9830
commit fa5d8255d6
1296 changed files with 167750 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
{
"name": "@flydotio/dockerfile",
"version": "0.2.5",
"description": "Dockerfile generator",
"main": "./index.js",
"bin": {
"dockerfile": "./index.js"
},
"type": "module",
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"test": "mocha",
"test:capture": "TEST_CAPTURE=1 mocha"
},
"author": "Sam Ruby",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^5.2.0",
"diff": "^5.1.0",
"ejs": "^3.1.9",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/fly-apps/dockerfile-node"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0"
},
"files": [
"index.js",
"gdf.js",
"templates"
]
}