laraship
Version:
Set sail with Laravel - Docker environment generator for Laravel projects
81 lines (80 loc) • 1.83 kB
JSON
{
"name": "laraship",
"version": "1.0.6",
"description": "Set sail with Laravel - Docker environment generator for Laravel projects",
"main": "src/index.js",
"bin": {
"laraship": "src/index.js"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"build": "tsc --project tsconfig.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torgodly/laraship.git"
},
"keywords": [
"laravel",
"docker",
"docker-compose",
"cli",
"devops",
"container"
],
"author": "your-name",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"boxen": "^5.1.2",
"inquirer": "^8.2.6",
"simple-git": "^3.22.0",
"zod": "^3.22.0",
"fs-extra": "^11.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^8.2.6",
"@types/node": "^20.0.0",
"@types/jest": "^29.0.0",
"typescript": "^5.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"jest": "^29.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!src/types/**/*"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"homepage": "https://github.com/torgodly/laraship#readme",
"bugs": {
"url": "https://github.com/torgodly/laraship/issues"
}
}