-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "devcongress_bot",
"version": "0.1.0",
"description": "DevCongress slack bot",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/devcongress/slackbot.git"
},
"scripts": {
"start": "concurrently \"node index.js\" \"node web.js\"",
"test": "jest",
"generate": "plop --plopfile tools/generators/index.js",
"shell": "NODE_ENV=development node index.js"
},
"author": "Andrew Smith",
"license": "MIT",
"dependencies": {
"apiai": "^3.0.3",
"body-parser": "^1.17.1",
"botkit": "^0.7.2",
"cheerio": "^0.22.0",
"concurrently": "^6.0.0",
"cryptiles": "^4.1.3",
"date-fns": "^1.28.1",
"dotenv": "^4.0.0",
"googleapis": "^37.2.0",
"hoek": "^6.1.2",
"node-schedule": "^1.1.1",
"pino": "^5.10.1",
"polka": "^0.5.1",
"random-ua": "0.0.6",
"request": "^2.88.0",
"tough-cookie": "^3.0.1",
"xml2js": "^0.4.17"
},
"engines": {
"node": ">=14",
"npm": ">=3"
},
"devDependencies": {
"botkit-mock": "^0.1.11",
"botkit-shell": "^0.2.0",
"deep-extend": "^0.6.0",
"eslint": "^3.9.0",
"https-proxy-agent": "^2.2.1",
"jest": "^26.6.3",
"plop": "^1.6.0",
"tunnel-agent": "^0.6.0"
}
}