forked from hubotio/hubot-redis-brain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "lisb-hubot-redis-brain",
"description": "A hubot script to persist hubot's brain using redis",
"version": "1.0.2",
"publishConfig": {
},
"author": "Josh Nichols <technicalpickles@github.com>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts"
],
"repository": {
"type": "git",
"url": "https://github.com/hubotio/hubot-redis-brain.git"
},
"engines": {
"node": "> 4.0.0"
},
"bugs": {
"url": "https://github.com/hubotio/hubot-redis-brain/issues"
},
"dependencies": {
"redis": "^3.1.2"
},
"peerDependencies": {
"lisb-hubot": ">=3 <10 || 0.0.0-development"
},
"devDependencies": {
"chai": "^2.1.1",
"coveralls": "^3.1.0",
"hubot": "^3.0.0",
"hubot-mock-adapter-v3": "^1.0.0",
"matchdep": "^2.0.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"proxyquire": "^1.8.0",
"semantic-release": "^17.4.2",
"sinon": "^1.13.0",
"sinon-chai": "^2.7.0",
"standard": "^10.0.2"
},
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}