-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "erc-checker",
"version": "1.3.0",
"description": "CLI tool to validate an ERC (following the o2r specification)",
"main": "index.js",
"scripts": {
"start": "DEBUG='index:*,checker:general,checker:ERROR' node index.js",
"debug": "DEBUG=* node index.js",
"test": "DEBUG='mocha:*' mocha test",
"testverbose": "DEBUG='*,-eslint:*' mocha test",
"testci": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o2r-project/erc-validator.git"
},
"keywords": [
"cli",
"erc",
"executable research compendium",
"o2r",
"o2r-project",
"opening reproducible research",
"comparison",
"reproducibility",
"reproducible research"
],
"author": {
"name": "o2r project",
"url": "https://o2r.info",
"email": "[email protected]"
},
"contributors": [
{
"name": "Timm Kühnel",
"url": "https://github.com/Timmimim"
},
{
"name": "Tom Niers",
"url": "https://github.com/tnier01"
},
{
"name": "Daniel Nüst",
"url": "https://github.com/nuest"
}
],
"license": "Apache-2.0",
"bin": {
"erc-checker": "./index.js"
},
"bugs": {
"url": "https://github.com/o2r-project/erc-validator/issues"
},
"homepage": "https://github.com/o2r-project/erc-validator#readme",
"dependencies": {
"ajv": "^5.5.2",
"base64-arraybuffer": "^0.2.0",
"colors": "^1.4.0",
"commander": "^4.1.1",
"debug": "^4.1.1",
"deglob": "o2r-project/deglob#master",
"fs": "0.0.1-security",
"image-size": "^0.8.3",
"jimp": "^0.9.6",
"leven": "^3.1.0",
"levenshtein": "^1.0.5",
"node-htmldiff": "^0.9.3",
"object-sizeof": "^1.5.3",
"pixelmatch": "^5.1.0",
"pngjs": "^3.4.0",
"promise": "^8.1.0",
"rewire": "^4.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.3",
"tmp": "^0.1.0"
}
}