-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
50
51
52
{
"name": "comparative-selection",
"version": "6.0.3",
"description": "Comparative selection algorithm plugin for d-pac platform",
"homepage": "https://github.com/d-pac/comparative-selection",
"author": {
"name": "d-pac",
"email": "info@d-pac.be",
"url": "http://www.d-pac.be"
},
"repository": "d-pac/comparative-selection",
"license": "GPL-3.0",
"files": [
"lib/comparativeSelection.js"
],
"main": "lib/comparativeSelection.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",
"istanbul": "0.4.4",
"mocha": "2.4.5",
"must": "0.12.0",
"proxyquire": "1.7.4",
"require-directory": "2.1.1",
"sinon": "1.17.3"
},
"scripts": {
"test-cov": "istanbul cover _mocha",
"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": "comparative-selection",
"label": "Comparative selection",
"description": "Simple comparative selection algorithm",
"type": "select"
}
]
}