-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "botmaster-enrich",
"version": "1.0.1",
"description": "A standardized way to make your bot context-aware. It exposes an API for enrichers which are procedures you can run to add variables to the context before sending to an NLU processor like Watson Conversation, LUIS or API.ai",
"main": "dist/index.js",
"scripts": {
"pretest": "npm run build",
"test": "istanbul cover _mocha -- --recursive dist/tests",
"tests": "mocha --recursive src/tests",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "mkdir -p dist && babel --presets=es2015,babili src --out-dir dist",
"docs": "documentation readme src/index.js --section=\"Botmaster Ware\"",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botmasterai/botmaster-enrich.git"
},
"keywords": [
"chatbot",
"bot",
"chat",
"pipeline",
"context"
],
"author": "Jonathan R Wickens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/botmasterai/botmaster-enrich/issues"
},
"homepage": "https://github.com/botmasterai/botmaster-enrich#readme",
"dependencies": {
"async": "^2.1.4",
"debug": "^2.6.0",
"node-cache": "^4.1.1",
"ramda": "^0.23.0"
},
"peerDependencies": {
"botmaster": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-babili": "0.0.10",
"babel-preset-es2015": "^6.22.0",
"botmaster": "git+https://github.com/botmasterai/botmaster.git",
"botmaster-test": "0.0.4",
"coveralls": "^2.11.15",
"documentation": "^4.0.0-beta.18",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.1.2"
}
}