-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "telegraf-experiments",
"version": "1.1.0",
"description": "Telegraf multivariate and A/B testing middleware",
"main": "lib/experiments.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/telegraf/telegraf-experiments.git"
},
"keywords": [
"telegram",
"telegram bot",
"telegraf",
"bot framework",
"experiments",
"A/B testing"
],
"author": "Vitaly Domnikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/telegraf/telegraf-experiments/issues"
},
"homepage": "https://github.com/telegraf/telegraf-experiments#readme",
"engines": {
"node": ">=6.2.0"
},
"files": [
"lib/experiments.js"
],
"scripts": {
"test": "mocha test --require should"
},
"dependencies": {
"debug": "^2.2.0",
"seedrandom": "^2.4.2"
},
"peerDependencies": {
"telegraf": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-mocha": "^4.0.0",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^2.4.5",
"should": "^10.0.0",
"telegraf": "^2.0.0"
}
}