forked from miscord/miscord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.41 KB
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
{
"name": "miscord",
"version": "4.6.4",
"description": "Facebook Messenger to Discord bridge",
"main": "index.js",
"scripts": {
"start": "node bin/index.js",
"postinstall": "node bin/postinstall.js",
"test": "standard",
"build": "node bin/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miscord/miscord/"
},
"homepage": "https://miscord.net",
"keywords": [
"messenger",
"discord",
"javascript",
"discord.js",
"bridge",
"bot"
],
"bin": {
"miscord": "bin/index.js"
},
"author": {
"name": "Bjornskjald",
"email": "github@bjorn.ml",
"url": "https://bjorn.ml/"
},
"license": "MIT",
"dependencies": {
"@sentry/node": "^4.4.2",
"chalk": "^2.4.2",
"discord.js": "^11.4.2",
"dot-prop": "^4.2.0",
"emoji-strip": "^1.0.1",
"fs-extra": "^7.0.1",
"is-docker": "^1.1.0",
"js-yaml": "^3.12.1",
"libfb": "^1.4.10",
"minimist": "^1.2.0",
"node-fetch": "^2.3.0",
"remove-accents": "^0.4.2",
"semver": "^5.6.0",
"strip-ansi": "^5.0.0",
"sudo-block": "^2.0.0"
},
"devDependencies": {
"archiver": "^3.0.0",
"extract-zip": "^1.6.7",
"gh-release": "^3.4.0",
"pkg": "^4.3.5",
"standard": "^12.0.1",
"tmp": "0.0.33"
},
"standard": {
"globals": [
"config",
"messenger",
"discord",
"connections",
"logger"
]
}
}