forked from watsonwork/watsonwork-echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
52
53
54
55
56
57
58
{
"name": "watsonwork-echo",
"version": "0.0.1",
"description": "A sample chatbot app that listens to messages posted to a space in IBM Watson Workspace and echoes 'hello' messages back to the space",
"keywords": [
"watson",
"work",
"sample",
"echo"
],
"homepage": "https://github.com/watsonwork/watsonwork-echo",
"bugs": {
"url": "https://github.com/watsonwork/watsonwork-echo"
},
"license": "Apache-2.0",
"files": [
".npmrc",
"lib/",
"src/"
],
"main": "lib/app.js",
"bin": {
"echo": "lib/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/watsonwork/watsonwork-echo.git"
},
"scripts": {
"start": "node lib/app.js",
"babel": "babel src --out-dir lib",
"test": "mocha lib/test",
"lint": "eslint src",
"clean": "rm -rf lib node_modules",
"build": "npm install && npm run babel && npm run lint && npm test",
"rebuild": "npm run clean && npm run build",
"cibuild": "npm run build"
},
"dependencies": {
"babel-preset-es2015": "^6.6.0",
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.9",
"request": "^2.73.0",
"socket.io": "^1.7.2"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"chai": "^3.5.0",
"eslint": "^3.3.0",
"mocha": "^2.5.3"
},
"engines": {
"node": ">=6.9.1",
"npm": ">=3.10.8"
}
}