-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.72 KB
/
package.json
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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "reviewbot",
"version": "1.2.8",
"private": true,
"description": "A bot to assist with code reviews via AI.",
"author": "richiemccoll",
"type": "module",
"homepage": "https://github.com/nearform/reviewbot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"prepare": "npx husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "probot run ./functions/webhook/app.js",
"dev": "node --watch indexDev.js",
"dev:pubsub": "node --watch -r dotenv/config pubsubDev.js",
"debug": "node --inspect-brk indexDev.js",
"test": "node --test tests/",
"test:watch": "node --test --watch tests/"
},
"dependencies": {
"@google-cloud/pubsub": "^4.8.0",
"@octokit/auth-app": "^7.1.1",
"acorn": "^8.14.0",
"acorn-jsx": "^5.3.2",
"acorn-loose": "^8.4.0",
"acorn-typescript": "^1.4.13",
"map-line-to-diff": "^1.0.0-beta.2",
"octokit": "^4.0.2",
"parse-diff": "^0.11.1",
"parse-git-patch": "^1.2.2",
"pino": "^9.5.0",
"probot": "^13.3.9"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fetch-mock": "^11.1.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"smee-client": "^2.0.4"
},
"engines": {
"node": ">= 10.13.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/reviewbot.git"
},
"bugs": {
"url": "https://github.com/nearform/reviewbot/issues"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}