-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.17 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.17 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "botmaster-session-ware-redis-store",
"version": "1.0.2",
"description": "Redis store adapter for the botmaster session ware",
"main": "./lib/index.js",
"scripts": {
"test": "export NODE_ENV=test; nyc --reporter=lcov --reporter=html ava",
"test-report": "yarn test; 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",
"docs": "documentation readme lib --section=\"API\"",
"report": "nyc report"
},
"ava": {
"files": [
"tests/**/*.js"
],
"source": [],
"match": [],
"serial": true,
"verbose": true,
"failFast": false,
"tap": false,
"powerAssert": false,
"timeout": "8s"
},
"nyc": {
"check-coverage": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"tests"
]
},
"keywords": [
"bot",
"botmaster",
"redis",
"redis-store",
"middleware"
],
"repository": "https://github.com/botmasterai/botmaster-session-ware-redis-store",
"author": "John-David Wuarin <john.dwuarin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/botmasterai/botmaster-session-ware-redis-store/issues"
},
"engines": {
"node": ">=4.x.x"
},
"peerDependencies": {
"botmaster": "^3.0.8",
"botmaster-session-ware": "^1.1.0"
},
"devDependencies": {
"ava": "^0.19.1",
"body-parser": "^1.17.2",
"botmaster": "^3.1.1",
"botmaster-session-ware": "^1.1.0",
"botmaster-test-fixtures": "^2.1.0",
"coveralls": "^2.13.1",
"documentation": "^4.0.0-rc.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"express": "^4.15.3",
"koa": "2.0.1",
"nock": "^9.0.13",
"nyc": "^11.0.2",
"request-promise": "^4.2.1"
},
"dependencies": {
"debug": "^2.6.8",
"ioredis": "^3.1.1",
"watson-developer-cloud": "^2.32.1"
}
}