-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.01 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
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
{
"name": "@kriton/results-engine",
"version": "1.0.0",
"description": "Pure, deterministic, independently-auditable results engine for awards judging: weighted means, Z-score normalisation, Bradley-Terry, a no-code-execution formula language, and reproducible ranking. Zero runtime dependencies.",
"keywords": [
"awards",
"judging",
"scoring",
"ranking",
"bradley-terry",
"deterministic",
"auditable",
"reproducible"
],
"license": "Apache-2.0",
"author": "Kriton",
"homepage": "https://github.com/kritonapp/results-engine#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kritonapp/results-engine.git"
},
"bugs": {
"url": "https://github.com/kritonapp/results-engine/issues"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"results-engine": "./dist/cli.js",
"kriton-results-engine": "./dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
],
"engines": {
"node": ">=22.14.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:pack": "npm run build && node scripts/check-pack.mjs",
"verify-engine": "node dist/cli.js"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.39.4",
"fast-check": "4.8.0",
"prettier": "^3.8.3",
"simple-statistics": "7.9.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.46.0",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}