Spaces:
Sleeping
Sleeping
| { | |
| "name": "activity-simulator", | |
| "version": "3.0.0", | |
| "description": "A learning project that simulates realistic developer workflows on GitHub - issues, PRs, code reviews, and the full SDLC", | |
| "main": "src/index.js", | |
| "type": "module", | |
| "scripts": { | |
| "start": "node src/index.js", | |
| "simulate": "node src/cli.js simulate", | |
| "daemon": "node src/daemon.js", | |
| "daemon:start": "pm2 start ecosystem.config.js --name activity-sim", | |
| "daemon:stop": "pm2 stop activity-sim", | |
| "daemon:logs": "pm2 logs activity-sim", | |
| "status": "node src/cli.js status", | |
| "setup": "node src/cli.js setup", | |
| "lint": "eslint src/", | |
| "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", | |
| "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage" | |
| }, | |
| "keywords": [ | |
| "github", | |
| "learning", | |
| "developer-workflow", | |
| "sdlc", | |
| "automation", | |
| "student-project" | |
| ], | |
| "author": "abedmohamed258", | |
| "license": "MIT", | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/abedmohamed258/activity-simulator.git" | |
| }, | |
| "bugs": { | |
| "url": "https://github.com/abedmohamed258/activity-simulator/issues" | |
| }, | |
| "homepage": "https://github.com/abedmohamed258/activity-simulator#readme", | |
| "dependencies": { | |
| "@octokit/rest": "^21.0.0", | |
| "@octokit/plugin-throttling": "^9.0.0", | |
| "@octokit/plugin-retry": "^7.0.0", | |
| "simple-git": "^3.22.0", | |
| "chalk": "^5.3.0", | |
| "commander": "^12.0.0", | |
| "croner": "^8.0.0", | |
| "date-fns": "^3.3.0", | |
| "date-fns-tz": "^3.0.0", | |
| "dotenv": "^16.4.0", | |
| "figlet": "^1.7.0", | |
| "inquirer": "^9.2.0", | |
| "lodash-es": "^4.17.21", | |
| "node-cron": "^3.0.3", | |
| "pino": "^8.18.0", | |
| "pino-pretty": "^10.3.0", | |
| "uuid": "^9.0.0", | |
| "yaml": "^2.3.0", | |
| "zod": "^3.22.0" | |
| }, | |
| "devDependencies": { | |
| "eslint": "^8.56.0", | |
| "eslint-config-prettier": "^9.1.0", | |
| "jest": "^29.7.0", | |
| "prettier": "^3.2.0" | |
| }, | |
| "engines": { | |
| "node": ">=18.0.0" | |
| }, | |
| "jest": { | |
| "testEnvironment": "node", | |
| "transform": {} | |
| } | |
| } | |