-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.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
{
"name": "ucb",
"description": "An upper confidence bounds multi-armed bandit algorithm",
"version": "3.2.0",
"license": "ISC",
"main": "index.js",
"typings": "index.d.ts",
"keywords": [
"multi-armed bandit",
"upper confidence bounds algorithm",
"promises-aplus",
"banditlab-2.0"
],
"author": {
"name": "Kurt Ericson",
"email": "github@kurttheviking.com",
"url": "http://github.com/kurttheviking"
},
"contributors": [
{
"name": "Kurt Ericson",
"email": "github@kurttheviking.com",
"url": "https://github.com/kurttheviking"
}
],
"repository": {
"type": "git",
"url": "git://github.com/kurttheviking/ucb-js.git"
},
"bugs": {
"url": "https://github.com/kurttheviking/ucb-js/issues"
},
"homepage": "https://github.com/kurttheviking/ucb-js#readme",
"dependencies": {
"debug": "4.1.1",
"has": "1.0.3",
"random-js": "1.0.8"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "5.11.1",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"mocha-eslint": "5.0.0",
"istanbul": "0.4.5",
"mocha": "10.2.0",
"mockery": "2.1.0",
"sinon": "7.2.2"
},
"scripts": {
"coverage": "./node_modules/istanbul/lib/cli.js cover --report=json-summary --report=html _mocha ./test -- --recursive",
"test": "node node_modules/mocha/bin/mocha ./test --recursive"
},
"tonicExampleFilename": "./opt/tonic.js"
}