forked from FabricLabs/doorman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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": "doorman",
"version": "0.1.0",
"description": "Multi-platform chatbot framework.",
"main": "lib/doorman.js",
"scripts": {
"start": "node doorman.js",
"test": "NODE_ENV=test mocha --recursive",
"coverage": "NODE_ENV=test istanbul cover _mocha -- --recursive",
"make:docs": "jsdoc lib README.md -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/doorman.git"
},
"keywords": [
"agent",
"bot",
"chat",
"chatbot",
"community",
"discord",
"fabric",
"maki",
"matrix",
"slack"
],
"author": "Fabric Labs <[email protected]> (https://labs.fabric.pub)",
"contributors": [
"Nate Richardson <[email protected]> (https://naterichardson.com)",
"Eric Martindale <[email protected]> (https://www.ericmartindale.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FabricLabs/doorman/issues"
},
"homepage": "https://github.com/FabricLabs/doorman#readme",
"dependencies": {
"@slack/client": "^4.1.0",
"discord.js": "^11.3.2",
"erm": "^0.0.1",
"marked": "^0.3.19",
"matrix-js-sdk": "^0.10.1"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.5.5",
"mocha": "^4.0.0",
"semistandard": "^11.0.0"
},
"semistandard": {
"ignore": [
"/test/"
]
}
}