-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
46
{
"name": "yowl-examples",
"version": "0.6.1",
"description": "Examples for the yowl chat bot framework",
"main": "index.js",
"dependencies": {
"yowl": "latest",
"yowl-classifier-bayes": "latest",
"yowl-dialog-manager": "latest",
"yowl-jobs-kue": "latest",
"yowl-lock-redis": "latest",
"yowl-parse-dates": "latest",
"yowl-platform-cli": "latest",
"yowl-platform-facebook": "latest",
"yowl-platform-ws": "latest",
"yowl-session-memory": "latest",
"yowl-session-redis": "latest",
"yowl-session-rethink": "latest"
},
"devDependencies": {
"jshint": "latest",
"browserify": "latest",
"mocha": "latest"
},
"scripts": {
"lint": "jshint ./examples/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianbrunner/yowl-examples.git"
},
"keywords": [
"chatbot",
"yowl"
],
"author": "Brian Brunner (brian.brunner@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianbrunner/yowl-examples/issues"
},
"jshintConfig": {
"node": true,
"proto": true
},
"homepage": "https://github.com/brianbrunner/yowl-examples#readme"
}