-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
62
63
64
{
"name": "botmaster-fulfill-actions",
"version": "1.1.2",
"description": "standard actions for botmaster-fulfill",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"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 src --out-dir dist",
"docs": "documentation readme src/index.js --section=\"Reference\"",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botmasterai/botmaster-fulfill-actions.git"
},
"keywords": [
"keys",
"skills",
"bot",
"orchestration",
"chatbot",
"toolkit",
"pipeline",
"framework",
"apis"
],
"author": "Jonathan R Wickens",
"license": "MIT",
"bugs": {
"url": "https://github.com/botmasterai/botmaster-fulfill-actions/issues"
},
"homepage": "https://github.com/botmasterai/botmaster-fulfill-actions#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"botmaster": "^2.3.0",
"botmaster-fulfill": "^3.2.0",
"botmaster-test": "0.0.4",
"coveralls": "^2.11.15",
"documentation": "^4.0.0-beta.18",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"mockdate": "^2.0.1",
"sinon": "^1.17.7",
"timezone-mock": "0.0.0"
},
"dependencies": {
"botmaster-fulfill": "^3.1.2",
"debug": "^2.6.0",
"moment-timezone": "^0.5.11",
"ramda": "^0.23.0"
},
"peerDependencies": {
"botmaster-fulfill": ">=3.2.0",
"botmaster": ">=2.3.0"
}
}