forked from botmasterai/botmaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.43 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
{
"name": "botmaster",
"version": "3.2.0",
"description": "Framework allowing developers to write bots that are agnostic with respect to the channel used by their users (messenger, telegram etc...)",
"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",
"test-watch": "export NODE_ENV=test; ava --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postversion": "git push && git push --tags",
"report": "nyc report",
"botmaster-docs": "jsdoc2md lib/botmaster.js > api-reference/botmaster.md",
"base-bot-docs": "jsdoc2md lib/base_bot.js > api-reference/base-bot.md",
"outgoing-message-docs": "jsdoc2md lib/outgoing_message.js > api-reference/outgoing-message.md",
"docs": "mkdir -p api-reference; yarn botmaster-docs; yarn base-bot-docs; yarn outgoing-message-docs",
"docs-deploy": "yarn docs && cp -r api-reference ../botmasterai.github.io/docs"
},
"ava": {
"files": [
"tests/**/*.js",
"!**/index.js"
],
"source": [],
"match": [],
"serial": true,
"verbose": true,
"failFast": true,
"tap": false,
"powerAssert": false
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"tests"
]
},
"repository": {
"type": "git",
"url": "https://github.com/jdwuarin/botmaster"
},
"bugs": {
"url": "https://github.com/jdwuarin/botmaster/issues"
},
"keywords": [
"bot",
"framework",
"toolkit",
"botmaster",
"slack",
"messenger",
"telegram",
"twitter",
"bot-library"
],
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.4"
},
"engines": {
"node": "4.x.x || >=6.x.x"
},
"devDependencies": {
"ava": "^0.19.1",
"body-parser": "^1.18.2",
"botmaster-test-fixtures": "^2.1.0",
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-ava": "^4.5.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"express": "^4.16.2",
"jsdoc-to-markdown": "^4.0.1",
"koa": "^2.4.1",
"nyc": "^11.4.1",
"request-promise": "^4.2.2"
},
"author": "JD Wuarin <[email protected]>",
"license": "MIT"
}