This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "hubot-code-review",
"version": "1.4.2",
"author": "Alley Interactive <[email protected]>",
"description": "A Hubot script for GitHub code review on Slack [archived]",
"main": "index.coffee",
"repository": {
"type": "git",
"url": "https://github.com/alleyinteractive/hubot-code-review"
},
"keywords": [
"hubot",
"code review",
"codereview",
"github",
"slack",
"chatops"
],
"homepage": "https://github.com/alleyinteractive/hubot-code-review",
"scripts": {
"test": "HUBOT_CODE_REVIEW_EMOJI_APPROVE=true node_modules/.bin/jasmine-node --verbose --coffee --color --forceexit test/",
"lint": "node_modules/.bin/coffeelint src/",
"lint-tests": "eslint -c .eslintrc --ext .js ./test"
},
"dependencies": {
"coffeescript": "^1.12.7",
"githubot": "^1.0.1",
"hubot": "^3.3.2",
"hubot-redis-brain": "github:hubotio/hubot-redis-brain#2ab8963",
"moment": "^2.29.1",
"node-schedule": "^2.1.0",
"punycode": "^2.1.1"
},
"peerDependencies": {
"hubot-slack": "^4"
},
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"bugs": {
"url": "https://github.com/alleyinteractive/hubot-code-review/issues"
},
"license": "GPL-3.0",
"devDependencies": {
"coffeelint": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"hubot-mock-adapter": "~1.1.1",
"jasmine-custom-message": "^0.8.2",
"jasmine-node": "^3.0.0",
"supertest": "~3.0.0"
}
}