-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "botmaster-fulfill",
"version": "4.0.0",
"description": "Declarative markup API and engine to integrate internal or external APIs with botmaster",
"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 src --out-dir dist",
"docs": "documentation readme src/index.js --section=\"API Reference\"",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botmasterai/botmaster-fulfill.git"
},
"keywords": [
"apis",
"framework",
"pipeline",
"bot",
"chatbot",
"chat",
"toolkit"
],
"author": "Jonathan R Wickens <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.0.1",
"debug": "^2.5.2",
"posthtml-parser": "^0.2.0",
"posthtml-render": "^1.0.6",
"ramda": "^0.22.1"
},
"peerDependencies": {
"botmaster": ">=3.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"botmaster": "^3.2.0",
"botmaster-telegram": "^1.0.2-0",
"botmaster-test": "1.0.6",
"coveralls": "^2.11.15",
"documentation": "^4.0.0-beta.18",
"eslint": "^3.12.2",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0",
"should": "^11.1.0"
},
"engines": {
"node": ">=9.0"
}
}