-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.95 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
73
{
"name": "xmppjs-chat-bot",
"version": "0.5.0",
"description": "Server-side XMPP chat bot",
"engines": {
"node": ">= 14.4.0"
},
"main": "lib/index.js",
"bin": "lib/cli/cli.js",
"directories": {
"lib": "lib"
},
"files": [
"/lib"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib/*",
"prepare": "npm run clean && npm run build",
"lint": "eslint ./src",
"test": "npm run lint && echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohnXLivingston/xmppjs-chat-bot.git"
},
"keywords": [
"XMPP",
"chat",
"bot"
],
"author": "John Livingston",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/JohnXLivingston/xmppjs-chat-bot/issues"
},
"homepage": "https://github.com/JohnXLivingston/xmppjs-chat-bot#readme",
"funding": [
"https://paypal.me/JohnXLivingston",
"https://liberapay.com/JohnLivingston/"
],
"devDependencies": {
"@tsconfig/node14": "^14.1.2",
"@types/node": "^14.18.63",
"@types/xmpp__client": "^0.13.3",
"@types/xmpp__component": "^0.13.3",
"@types/xmpp__connection": "^0.13.3",
"@types/xmpp__debug": "^0.13.3",
"@types/xmpp__id": "^0.13.2",
"@types/xmpp__jid": "^1.3.5",
"@types/xmpp__xml": "^0.13.4",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@xmpp/client": "^0.13.1",
"@xmpp/component": "^0.13.1",
"@xmpp/debug": "^0.13.0",
"@xmpp/id": "^0.13.1",
"@xmpp/jid": "^0.13.1",
"@xmpp/xml": "^0.13.1",
"commander": "^11.1.0"
}
}