-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "wingbot-watson",
"version": "1.0.1",
"description": "Wingbot plugin for Watson Assistant NLP",
"main": "src/main.js",
"scripts": {
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:unit": "mocha ./test/**/*.test.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:coverage": "nyc --reporter=html mocha --opts ./test/mocha.opts ./test && nyc report",
"test:coverage:threshold": "nyc check-coverage --lines 80 --functions 80 --branches 75",
"test:lint": "eslint ./src/**/*.js ./bin/**/*.js ./test/**/*.js ",
"doc": "node ./bin/makeApiDoc.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wingbotai/wingbot-watson.git"
},
"keywords": [
"wingbot",
"chatbot",
"framework",
"nlp",
"ai",
"watson",
"ibm",
"assistant",
"conversation"
],
"author": "wingbot.ai",
"license": "MIT",
"engines": {
"node": "^8.0.0"
},
"bugs": {
"url": "https://github.com/wingbotai/wingbot-watson/issues"
},
"homepage": "https://github.com/wingbotai/wingbot-watson#readme",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-mocha": "^0.7.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.6.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-react": "^7.14.3",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"wingbot": "^2.14.0"
},
"peerDependencies": {
"wingbot": "^2.5.0"
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
}
}