-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (34 loc) · 1.22 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
{
"name": "bayesian-battle",
"version": "0.0.7",
"author": "Michael Schmatz <michael@codecombat.com> (http://github.com/schmatz)",
"description":"An implementation of a Bayesian-approximation based game ranking system described by Weng and Lin and used by HackerRank.",
"keywords":["bayesian","scoring","ranking"],
"homepage":"http://github.com/codecombat/bayesian-battle",
"bugs": {
"url":"http://github.com/codecombat/bayesian-battle/issues",
"email":"michael@codecombat.com"
},
"license":"MIT",
"dependencies": {
"lodash":"~3.10.1"
},
"main":"lib/bayesian-battle/bayesianBattle",
"devDependencies": {
"jasmine-node": "",
"coffee-script": ">=1.3"
},
"engines": {
"node":">= 0.10.0"
},
"scripts": {
"test": "./node_modules/.bin/jasmine-node --coffee .",
"build": "./node_modules/.bin/coffee --bare --compile --output lib/bayesian-battle src/*.coffee",
"prepublish": "./node_modules/.bin/coffee --bare --compile --output lib/bayesian-battle src/*.coffee",
"postpublish": "rm -rf lib"
},
"repository": {
"type":"git",
"url":"https://github.com/codecombat/bayesian-battle"
}
}