forked from claude-did-this/claude-hub
37 lines
1.1 KiB
JSON
37 lines
1.1 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/ensure-test-dirs.sh",
|
|
"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",
|
|
"jest": "^29.7.0",
|
|
"jest-junit": "^16.0.0",
|
|
"nodemon": "^3.0.1",
|
|
"pre-commit": "^1.2.2",
|
|
"supertest": "^7.1.1"
|
|
}
|
|
}
|