-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 786 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 786 Bytes
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
{
"name": "hubot-xmpp",
"description": "XMPP adapter for Hubot.",
"repository": "github:xmppjs/hubot-xmpp",
"homepage": "https://github.com/xmppjs/hubot-xmpp",
"bugs": "https://github.com/xmppjs/hubot-xmpp/issues",
"version": "0.3.0",
"author": {
"name": "Mark Story",
"email": "mark@mark-story.com",
"url": "http://mark-story.com"
},
"keywords": [
"hubot",
"xmpp",
"adapter"
],
"license": "MIT",
"scripts": {
"test": "mocha test/"
},
"main": "./adapter",
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"node-xmpp-client": "^3.2.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"hubot": ">= 3.0.0",
"mocha": "^6.2.2",
"sinon": "^7.5.0"
},
"peerDependencies": {
"hubot": ">= 3.0.0"
}
}