-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
45
{
"name": "replybot",
"version": "1.0.0",
"description": "Using Typeform to create Facebook Bots",
"main": "index.js",
"scripts": {
"_test": "mocha -w --colors lib/**/*.test.js",
"start": "node lib/index.js",
"dev": "nodemon lib/index.js",
"test": "nyc npm run _test",
"report": "nyc report",
"lint": "eslint ."
},
"engines": {
"node": "10.1.0",
"npm": "6.0.1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@vlab-research/botspine": "0.0.12",
"@vlab-research/chatbase-postgres": "0.0.3",
"@vlab-research/translate-typeform": "0.0.29",
"@vlab-research/utils": "0.0.11",
"cacheman": "^2.2.1",
"chrono-node": "^1.3.11",
"farmhash": "^3.0.0",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"mustache": "^4.0.0",
"parse-duration": "^0.4.4",
"r2": "^2.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^6.2.0",
"eslint": "^6.8.0",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nodemon": "^1.17.5",
"nyc": "^13.3.0",
"sinon": "^7.2.3"
}
}