forked from botmasterai/botmaster-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.99 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
{
"name": "botmaster-socket.io",
"version": "1.0.3",
"description": "The socket.io Botmaster integration",
"main": "./lib/index.js",
"scripts": {
"s": "DEBUG=botmaster:socket.io nodemon --legacy-watch ./example_jd.js",
"start": "node ./example_jd.js",
"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",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postversion": "git push && git push --tags && rm -rf build/temp",
"jsdoc": "jsdoc ./lib ./lib/bot_types",
"report": "nyc report"
},
"directories": {
"tests": "test"
},
"ava": {
"files": [
"tests/**/*.js"
],
"source": [],
"match": [],
"serial": true,
"verbose": true,
"failFast": false,
"tap": false,
"powerAssert": false
},
"nyc": {
"check-coverage": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"exclude": [
"tests"
]
},
"keywords": [
"bot",
"botmaster",
"socket.io",
"websockets",
"socketio",
"bot-framework"
],
"license": "MIT",
"author": "JD Wuarin <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/botmasterai/botmaster-socket.io"
},
"bugs": {
"url": "https://github.com/botmasterai/botmaster-socket.io/issues"
},
"dependencies": {
"botmaster": "^3.0.6",
"debug": "^2.6.3",
"lodash": "^4.17.4",
"socket.io": "^1.7.3"
},
"engines": {
"node": ">=4.x.x"
},
"devDependencies": {
"ava": "^0.18.2",
"botmaster-test-fixtures": "^2.1.0",
"coveralls": "^2.11.16",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jsdoc": "^3.4.2",
"nyc": "^10.1.2",
"request-promise": "^4.1.1"
}
}