forked from botmasterai/botmaster-watson-conversation-ware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "botmaster-watson-conversation-ware",
"version": "1.1.2",
"description": "Botmaster middleware for Watson Conversation",
"main": "./lib/index.js",
"scripts": {
"test": "export NODE_ENV=test; nyc --reporter=lcov --reporter=html ava; nyc report",
"test-debug": "export NODE_ENV=test DEBUG=botmaster:*; nyc --reporter=lcov --reporter=html ava",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postversion": "git push && git push --tags && rm -rf build/temp",
"docs": "documentation readme lib --section=\"API\"",
"report": "nyc report"
},
"ava": {
"files": [
"tests/**/*.js"
],
"source": [],
"match": [],
"serial": true,
"verbose": true,
"failFast": false,
"tap": false,
"powerAssert": false,
"timeout": "4s"
},
"nyc": {
"check-coverage": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"tests"
]
},
"keywords": [
"bot",
"botmaster",
"context",
"context-aware",
"watson",
"conversation",
"middleware",
"watson"
],
"repository": {
"type": "git",
"url": "https://github.com/botmasterai/botmaster-watson-conversation-ware"
},
"author": "JD Wuarin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/botmasterai/botmaster-watson-conversation-ware/issues"
},
"homepage": "https://github.com/botmasterai/botmaster-watson-conversation-ware#readme",
"engines": {
"node": ">=4.x.x"
},
"peerDependencies": {
"botmaster": "^3.0.8",
"botmaster-session-ware": "^1.1.0"
},
"devDependencies": {
"ava": "^0.18.2",
"body-parser": "^1.17.1",
"botmaster": "^3.0.8",
"botmaster-session-ware": "^1.1.0",
"botmaster-test-fixtures": "^2.1.0",
"coveralls": "^2.11.16",
"documentation": "^4.0.0-beta.18",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"express": "^4.15.2",
"koa": "2.0.1",
"nock": "^9.0.11",
"nyc": "^10.1.2",
"request-promise": "^4.1.1"
},
"dependencies": {
"debug": "^2.6.3",
"watson-developer-cloud": "^2.28.0"
}
}