-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "@eliware/discopy",
"type": "module",
"version": "1.1.7",
"description": "Discord server backup & restore tool — export and restore roles, channels, permissions, emojis, stickers, webhooks, invites and more.",
"main": "discopy.mjs",
"scripts": {
"start": "node discopy.mjs",
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/discopy.git"
},
"keywords": [
"discopy",
"discord",
"backup",
"restore",
"discord-backup",
"discord-restore",
"nodejs",
"eliware"
],
"author": "Eli Sterling, eliware.org <eli@eliware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliware/discopy/issues"
},
"homepage": "https://github.com/eliware/discopy#readme",
"devDependencies": {
"jest": "^30.2.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/?(*.)+(spec|test).mjs",
"**/?(*.)+(spec|test).cjs"
]
},
"dependencies": {
"@eliware/common": "^1.1.1",
"@eliware/discord": "^1.1.1",
"adm-zip": "^0.5.16",
"dotenv": "^17.2.3",
"node-fetch": "^3.3.2"
}
}