-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "balanced-comparative-selection",
"version": "2.0.0",
"description": "Balanced comparative selection algorithm plugin for d-pac platform",
"homepage": "https://github.com/d-pac/balanced-comparative-selection",
"author": {
"name": "d-pac",
"email": "info@d-pac.be",
"url": "http://www.d-pac.be"
},
"repository": "https://github.com/d-pac/balanced-comparative-selection",
"license": "GPL-3.0",
"files": [
"lib/selection.js"
],
"main": "lib/selection.js",
"keywords": [
"d-pac.plugin",
"d-pac",
"performance",
"assessment",
"comparative"
],
"dependencies": {
"lodash": "4.1.0"
},
"devDependencies": {
"documentation": "^5.3.2",
"eslint": "^2.13.1",
"eslint-config-prototypers": "^0.2.0",
"mocha": "2.4.5",
"must": "0.12.0",
"proxyquire": "1.7.4",
"require-directory": "2.1.1",
"sinon": "1.17.3"
},
"scripts": {
"docs": "documentation readme lib -f md --section=API",
"test": "mocha test/*.spec.js -R dot",
"lint": "eslint lib test && echo 'Linting finished!'"
},
"d-pac": [
{
"name": "balanced-comparative-selection",
"description": "Balanced comparative selection algorithm",
"type": "select"
}
]
}