-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "node-benchmark-compare",
"version": "1.0.2",
"description": "JavaScript version of the benchmark/compare.R Node.js script",
"type": "module",
"bin": "./bin/node-benchmark-compare.js",
"exports": "./src/node-benchmark-compare.js",
"files": [
"bin",
"src"
],
"scripts": {
"eslint": "eslint .",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run eslint && npm run prettier && npm run test-only",
"test-coverage": "npm run test-only -- --coverage-report=lcov",
"test-only": "tap",
"snap": "tap"
},
"tap": {
"node-arg": [
"--no-warnings",
"--experimental-loader",
"@istanbuljs/esm-loader-hook"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/targos/node-benchmark-compare.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/targos/node-benchmark-compare/issues"
},
"homepage": "https://github.com/targos/node-benchmark-compare#readme",
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.1.2",
"eslint": "^7.32.0",
"eslint-config-cheminfo": "^5.2.4",
"prettier": "^2.3.2",
"tap": "^15.0.9"
},
"dependencies": {
"summary": "^2.1.0",
"ttest": "^3.0.0"
}
}