-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
44
45
46
47
48
49
50
51
52
{
"name": "super-bot",
"version": "2.0.0",
"description": "A simple yet extensible bot.",
"main": "start.js",
"dependencies": {
"@google-cloud/translate": "^4.1.3",
"axios": "^0.19.0",
"canvas": "^2.6.0",
"cheerio": "^1.0.0-rc.3",
"config": "^3.2.2",
"dialogflow": "^0.12.2",
"dotenv": "^8.1.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nedb": "^1.8.0",
"puppeteer": "^1.20.0",
"puppeteer-extra": "^2.1.3",
"puppeteer-extra-plugin-recaptcha": "^3.0.4",
"puppeteer-extra-plugin-stealth": "^2.2.2",
"safe-eval": "^0.4.1",
"sharp": "^0.23.1"
},
"devDependencies": {
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"should": "^13.2.3"
},
"scripts": {
"start": "node .",
"start:dev": "node .",
"start:mon": "nodemon -L .",
"test": "mocha --recursive --require esm --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfaraj/super-bot.git"
},
"keywords": [
"bot",
"robot",
"respond"
],
"author": "George Faraj",
"license": "ISC",
"bugs": {
"url": "https://github.com/gfaraj/super-bot/issues"
},
"homepage": "https://github.com/gfaraj/super-bot#readme"
}