forked from sebsylvester/reminder-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "reminder-bot",
"version": "1.1.1",
"description": "A clone of the 'Hello Jarvis' Facebook Messenger bot, built with Microsoft Bot Framework and Wit.ai.",
"main": "lib/app.js",
"repository": {
"type": "git",
"url": "https://github.com/sebsylvester/reminder-bot"
},
"scripts": {
"start": "node ./lib/app.js",
"build:watch": "babel src --out-dir lib --source-maps --watch",
"build": "babel src --out-dir lib --source-maps",
"test": "nyc --reporter=lcov mocha",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json",
"postinstall": "npm run build"
},
"keywords": [
"Microsoft Bot Framework",
"botbuilder",
"botbuilder-wit",
"chatbot",
"bot",
"wit.ai",
"Hello Jarvis"
],
"author": "Sebastian Sylvester",
"license": "MIT",
"dependencies": {
"@google/maps": "^0.3.0",
"botbuilder": "^3.5.4",
"botbuilder-wit": "^1.1.1",
"chance": "^1.0.4",
"moment-timezone": "^0.5.11",
"mongoose": "^4.7.8",
"node-wit": "^4.1.0",
"restify": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-latest": "^6.22.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"mocha": "^3.1.2",
"nyc": "^10.1.2",
"sinon": "^1.17.6"
}
}