-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.36 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.36 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
{
"name": "apportionment",
"version": "3.0.0",
"description": "Collection of apportionment methods.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HDv2b/apportionment"
},
"type": "module",
"types": "./dist/index.d.ts",
"keywords": [
"apportionment",
"math",
"fair distribution",
"remainder",
"voting",
"proportional representation",
"Hamilton",
"Vinton",
"Hare-Niemeyer",
"Largest Remainder",
"Jefferson",
"D'Hondt",
"Adams",
"Webster",
"Huntington-Hill"
],
"main": "./dist/index.js",
"module": "./index.js",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "npx @biomejs/biome check --write",
"prepack": "npx tsgo",
"bench:single": "cross-env NODE_OPTIONS=--expose-gc npx vitest bench test/index.bench.ts --maxWorkers=1 --run"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.test.ts"
]
},
"author": {
"name": "Hussein Duvigneau",
"email": "hussein@notmybase.com",
"url": "https://notmybase.com"
},
"bugs": "https://github.com/HDv2b/apportionment/issues",
"homepage": "https://github.com/HDv2b/apportionment",
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@typescript/native-preview": "^7.0.0-dev.20260201.1",
"@vitest/coverage-v8": "^4.0.18",
"cross-env": "^10.1.0",
"vitest": "^4.0.18"
},
"files": [
"dist/**/*"
]
}