-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@fabric/doorman",
"version": "0.2.1",
"description": "Multi-platform chatbot framework.",
"main": "services/doorman.js",
"scripts": {
"bot": "node scripts/bot.js",
"coverage": "NODE_ENV=test c8 npm test",
"make:docs": "jsdoc types README.md -d docs",
"start": "node scripts/node.js",
"test": "NODE_ENV=test mocha tests",
"make:api": "npm run parse:api && jsdoc types/ README.md -d docs/",
"make:coverage": "npm run coverage && c8 report --reporter html",
"parse:api": "jsdoc2md --configure jsdoc.json --files types/** README.md > API.md",
"review:coverage": "npm run make:coverage && ecstatic reports/coverage"
},
"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": [
"Eric Martindale <[email protected]> (https://www.ericmartindale.com)",
"Nate Richardson <[email protected]> (https://naterichardson.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FabricLabs/doorman/issues"
},
"homepage": "https://github.com/FabricLabs/doorman#readme",
"dependencies": {
"@fabric/core": "FabricLabs/fabric#feature/lightning",
"@slack/client": "^5.0.2",
"discord.js": "^14.3.0",
"matrix-js-sdk": "^19.5.0"
},
"devDependencies": {
"chai": "^4.3.6",
"jsdoc": "FabricLabs/jsdoc",
"mocha": "10.0.0",
"semistandard": "11.0.0"
},
"semistandard": {
"ignore": [
"/tests/"
]
},
"nyc": {
"include": [
"types",
"services"
],
"exclude": [
"tests",
"data"
],
"report-dir": "./reports/coverage",
"temp-dir": "./reports/nyc"
}
}