dryrun-ci
Version:
DryRun CI - Local GitLab CI/CD pipeline testing tool with Docker execution, performance monitoring, and security sandboxing
148 lines (147 loc) • 4.49 kB
JSON
{
"name": "dryrun-ci",
"version": "0.0.2",
"private": false,
"description": "DryRun CI - Local GitLab CI/CD pipeline testing tool with Docker execution, performance monitoring, and security sandboxing",
"keywords": [
"gitlab",
"ci-cd",
"pipeline",
"testing",
"dryrun",
"local-development",
"cli",
"devops",
"automation",
"docker",
"containers",
"performance-monitoring",
"security-sandboxing",
"production-ready",
"real-execution",
"metrics",
"vulnerability-scanning"
],
"author": "Asimatic Labs",
"license": "MIT",
"bin": {
"dryrun-ci": "bin/cli/index.js",
"dr-ci": "bin/cli/index.js"
},
"scripts": {
"dev": "next dev",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/index.js",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"export": "next export",
"cli": "node bin/cli/index.js",
"build-cli": "tsc -p tsconfig.cli.json",
"build-enhanced-cli": "tsc src/cli/enhancedIndex.ts --outDir bin/cli --target es2020 --module commonjs --moduleResolution node --esModuleInterop --resolveJsonModule --skipLibCheck",
"prepare": "npm run build-cli",
"docker:check": "docker --version",
"docker:pull-images": "docker pull node:18-alpine && docker pull ubuntu:20.04 && docker pull alpine:latest",
"security:scan": "npm audit && echo 'Additional security scanning with enhanced features'",
"benchmark": "node bin/cli/index.js benchmark",
"test:docker": "node bin/cli/index.js run --docker --dry-run",
"test:security": "node bin/cli/index.js security",
"install:global": "npm install -g .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@monaco-editor/react": "^4.6.0",
"@types/socket.io": "^3.0.1",
"archiver": "^6.0.1",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"clsx": "^2.0.0",
"commander": "^11.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dockerode": "^4.0.2",
"express": "^4.18.2",
"figlet": "^1.8.1",
"framer-motion": "^10.16.16",
"helmet": "^7.1.0",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"listr2": "^9.0.1",
"log-update": "^6.1.0",
"lucide-react": "^0.344.0",
"next": "^14.0.4",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"ora": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"semver": "^7.5.4",
"sharp": "^0.33.1",
"socket.io": "^4.8.1",
"tailwind-merge": "^2.2.0",
"tar-stream": "^3.1.6",
"toml": "^3.0.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.14.2",
"zustand": "^4.4.7"
},
"devDependencies": {
"@jest/globals": "^30.0.4",
"@types/archiver": "^6.0.2",
"@types/cli-progress": "^3.11.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/dockerode": "^3.3.23",
"@types/express": "^4.17.21",
"@types/figlet": "^1.7.0",
"@types/iarna__toml": "^2.0.5",
"@types/inquirer": "^8.2.11",
"@types/jest": "^27.5.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/semver": "^7.5.6",
"@types/tar-stream": "^3.1.3",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"jest": "^29.7.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.4.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Asimatic-Labs/dryrun.git"
},
"bugs": {
"url": "https://github.com/Asimatic-Labs/dryrun/issues"
},
"homepage": "https://github.com/Asimatic-Labs/dryrun#readme",
"files": [
"bin/cli/",
"bin/types/",
"bin/utils/",
"!bin/**/*.test.js",
"!bin/**/__tests__/",
"README.md",
"LICENSE",
"package.json"
]
}