Files
claude-hub/package.json
Jonathan Flatt 2a3327e038 feat: Add comprehensive CI/CD pipeline with automated PR reviews
- Add GitHub Actions workflows for CI, security scanning, and deployment
- Implement automated PR review system triggered by successful check suites
- Add ESLint and Prettier for code quality and formatting
- Configure Dependabot for automated dependency updates
- Add comprehensive test coverage for check suite webhook events
- Include Docker builds and container registry publishing
- Add security scanning with CodeQL, npm audit, and TruffleHog
- Create PR and issue templates for better collaboration
- Add comprehensive CI/CD documentation

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-05-21 03:42:09 +00:00

46 lines
1.4 KiB
JSON

{
"name": "claude-github-webhook",
"version": "1.0.0",
"description": "A webhook endpoint for Claude to perform git and GitHub actions",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"test:unit": "jest --testMatch='**/test/unit/**/*.test.js'",
"test:integration": "jest --testMatch='**/test/integration/**/*.test.js'",
"test:e2e": "jest --testMatch='**/test/e2e/scenarios/**/*.test.js'",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage",
"pretest": "./scripts/utils/ensure-test-dirs.sh",
"lint": "eslint src/ test/ --ext .js --fix",
"lint:check": "eslint src/ test/ --ext .js",
"format": "prettier --write src/ test/",
"format:check": "prettier --check src/ test/",
"security:audit": "npm audit --audit-level=moderate",
"security:fix": "npm audit fix",
"setup:dev": "pre-commit install"
},
"dependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"eslint": "^8.57.1",
"eslint-config-node": "^4.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nodemon": "^3.0.1",
"pre-commit": "^1.2.2",
"prettier": "^3.0.0",
"supertest": "^7.1.1"
}
}