-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 988 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 988 Bytes
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": "yowl",
"version": "0.6.1",
"description": "Extensible multi-platform chat bot framework.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "jshint lib/*.js lib/**/*.js",
"test": "mocha test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianbrunner/yowl.git"
},
"keywords": [
"chatbot"
],
"author": "brian.brunner@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianbrunner/yowl/issues"
},
"dependencies": {
"body-parser": "^1.15.0",
"debug": "^2.2.0",
"express": "^4.13.4",
"lodash": "^4.11.1",
"merge-descriptors": "^1.0.1",
"moment": "^2.12.0",
"uuid": "^3.1.0",
"yargs": "^4.6.0"
},
"devDependencies": {
"jshint": "latest",
"browserify": "latest",
"mocha": "latest"
},
"jshintConfig": {
"node": true,
"proto": true
},
"homepage": "https://github.com/brianbrunner/yowl#readme"
}