forked from pinano-discord/Pinano-Discord-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 733 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 733 Bytes
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
{
"name": "pinano-bot",
"version": "2.0.0",
"description": "A Discord bot for Pinano",
"main": "app.js",
"author": "theProject#2997",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pinano-discord/Pinano-Discord-Bot"
},
"dependencies": {
"discord.js": "^14.9.0",
"humanize-duration": "^3.23.1",
"mongodb": "^3.6.1",
"node-cron": "^2.0.3"
},
"devDependencies": {
"jest": "^26.6.3",
"standard": "^16.0.4"
},
"scripts": {
"test": "standard && jest",
"test:int": "standard --verbose && jest int --passWithNoTests",
"test:unit": "standard --verbose && jest unit --passWithNoTests"
},
"standard": {
"env": [
"jest"
]
}
}