-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.21 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
{
"name": "piterjs-bbot",
"version": "1.0.0",
"description": "PiterJS bot for Rocket.Chat",
"main": "index.js",
"files": [
"index.js",
"src"
],
"repository": "git@github.com:piterjs/bbot.git",
"author": "Mikhail Poluboyarinov <mikle.sol@gmail.com>",
"contributors": [],
"license": "MIT",
"private": false,
"engines": {
"node": "> 8.0.0",
"npm": "> 5.0.0"
},
"keywords": [
"bBot",
"Rocket.Chat",
"rocketchat",
"chatbot",
"chat",
"messaging",
"conversation",
"PiterJS"
],
"dependencies": {
"axios": "^0.19.0",
"bbot": "^1.4.0",
"ics": "^2.13.2",
"moment": "^2.24.0",
"nanoid": "^2.0.3",
"nodemailer": "^6.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.5.0",
"mocha": "^6.1.4",
"ndb": "^1.0.45",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^7.3.2"
},
"bot": {
"message-adapter": "rocketchat"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"debug": "ndb index.js",
"mocha": "mocha",
"test": "nyc mocha",
"test:report": "nyc --reporter=lcov --reporter=text-summary mocha",
"test:codecov": "codecov"
}
}