-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "derpybot-plug",
"version": "1.24.0",
"description": "A Plug.dj bot using PlugApi",
"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 --exit",
"secrets": "tar cvf secrets.tar private && travis encrypt-file secrets.tar && rm secrets.tar"
},
"dependencies": {
"cleverbot-node": "^0.3.11",
"firebase-admin": "^8.2.0",
"fuzzysort": "^1.1.4",
"googleapis": "^41.0.1",
"jethro": "^4.4.3",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"node-schedule": "^1.3.0",
"plugapi": "^5.1.1",
"request": "^2.88.0",
"underscore": "^1.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/franciscog/DerpyBot-plugdj"
},
"keywords": [
"node",
"bot",
"plug.dj",
"PlugAPI"
],
"author": "Cory Shaw, FranciscoG",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"marked": "^0.7.0",
"mocha": "^6.2.2"
}
}