-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
44 lines (44 loc) · 948 Bytes
/
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
{
"name": "hubot-redis-brain",
"description": "A hubot script to persist hubot's brain using redis",
"version": "0.0.0-development",
"author": "Josh Nichols <[email protected]>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts"
],
"repository": {
"type": "git",
"url": "https://github.com/hubotio/hubot-redis-brain.git"
},
"engines": {
"node": ">= 18"
},
"bugs": {
"url": "https://github.com/hubotio/hubot-redis-brain/issues"
},
"main": "index.mjs",
"scripts": {
"pretest": "standard",
"test": "node --test test/*.mjs",
"test:watch": "node --watch --test",
"e2e": "node --test test/e2e/*"
},
"peerDependencies": {
"hubot": ">= 11 || 0.0.0-development"
},
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
},
"dependencies": {
"redis": "^4.6.10"
},
"devDependencies": {
"standard": "^17.1.0"
}
}