forked from FranciscoG/DerpyBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "derpybot",
"version": "2.1.0",
"description": "A Dubtrack.fm Bot using DubAPI",
"main": "index.js",
"scripts": {
"start": "ENV=test nodemon index.js",
"start-muted": "MUTED=1 ENV=test nodemon index.js",
"live": "ENV=prod nodemon index.js",
"test": "ENV=test mocha -c -t 10000 --reporter=spec tests",
"secrets": "tar cvf secrets.tar private && travis encrypt-file secrets.tar && rm secrets.tar"
},
"dependencies": {
"dubapi": "^2.0.0",
"firebase-admin": "^11.11.0",
"fuzzy": "^0.1.3",
"googleapis": "^41.0.1",
"jethro": "^4.4.3",
"lodash": "^4.17.14",
"moment": "^2.29.4",
"node-schedule": "^1.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/franciscog/DerpyBot"
},
"keywords": [
"node",
"bot",
"dubtrack",
"DubAPI"
],
"author": "Cory Shaw, Francisco",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"marked": "^0.7.0",
"mocha": "^5.1.1",
"nodemon": "^3.0.1"
}
}