-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "estimating-rasch-model",
"version": "5.1.0",
"description": "Estimate the Rasch/Bradley-Terry-Luce parameters using conditional maximum likelihood",
"main": "lib/estimation.js",
"scripts": {
"test-cov": "istanbul cover _mocha",
"test": "mocha",
"benchmark": "COMMIT=`git log -1 --format=format:%H` node benchmarks/benchmark.js >> benchmarks/benchmarks.log",
"docs": "documentation readme lib -f md --section=API"
},
"repository": {
"type": "git",
"url": "https://github.com/d-pac/estimating-rasch-model.git"
},
"author": "San Verhavert",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/d-pac/estimating-rasch-model/issues"
},
"homepage": "https://github.com/d-pac/estimating-rasch-model",
"dependencies": {
"d-pac.functions": "^2.0.0",
"lodash": "^4.0.1"
},
"files": [
"lib"
],
"devDependencies": {
"benchmark": "^2.1.0",
"documentation": "^5.3.2",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"moment": "^2.18.1",
"must": "^0.13.1",
"require-directory": "^2.1.1"
},
"engines": {
"node": "^6.9.5"
}
}