-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "pr-automation",
"version": "1.0.0",
"description": "Simple automation to receive Bitbucket PR webhooks and run Claude code",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"setup": "node setup.js",
"build:local": "npm install && echo '✓ Local dependencies installed'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write"
]
},
"keywords": [
"bitbucket",
"webhook",
"claude",
"automation"
],
"author": "",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^11.0.0",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.6",
"prom-client": "^15.1.3",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^8.0.0",
"jest": "^30.2.0",
"lint-staged": "^16.2.4",
"nodemon": "^3.0.1",
"prettier": "^3.6.2",
"supertest": "^7.2.2"
}
}