-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "@rx-irc/bot",
"description": "A Node.js IRC bot framework based on RxJS streams.",
"version": "3.0.0",
"license": "MIT",
"author": "Florian Mäder <[email protected]>",
"homepage": "https://rx-irc.github.io/bot/",
"bugs": "https://github.com/rx-irc/bot/issues",
"repository": "github:rx-irc/bot",
"main": "app/client-wrapper.js",
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@fkm/semantic-release-config"
},
"scripts": {
"start": "node app/start.js",
"debug": "node --inspect=0.0.0.0 app/start.js",
"docs": "node node_modules/esdoc/out/src/ESDocCLI.js"
},
"dependencies": {
"@rx-irc/client": "*",
"@rx-irc/bot-1337": "*",
"@rx-irc/bot-aare": "*",
"@rx-irc/bot-admin": "*",
"@rx-irc/bot-fun": "*",
"@rx-irc/bot-lastfm": "*",
"@rx-irc/bot-quiz": "*",
"assert": "^2.0.0",
"debug": "^4.3.1",
"rxjs": "^6.6.7"
},
"devDependencies": {
"@fkm/semantic-release-config": "^1.0.1",
"esdoc": "^1.1.0",
"esdoc-accessor-plugin": "^1.0.0",
"esdoc-brand-plugin": "fkm/esdoc-plugins#brand",
"esdoc-coverage-plugin": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-external-nodejs-plugin": "^1.0.0",
"esdoc-integrate-manual-plugin": "^1.0.0",
"esdoc-node": "^1.0.5",
"esdoc-publish-html-plugin": "^1.1.2"
}
}