-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "@envisim/sampling",
"version": "0.1.2",
"description": "Finite population sampling algorithms",
"keywords": [
"statistics",
"design-based inference",
"sampling"
],
"homepage": "https://envisim.se",
"repository": "github:envisim/core",
"license": "AGPL-3.0-only",
"contributors": [
"Anton Grafström <anton.grafstrom@gmail.com>",
"Wilmer Prentius <wilmer.prentius@gmail.com>"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"!dist/**/*.d.ts.map"
],
"scripts": {
"prebuild": "pnpm run clean",
"build": "tsc",
"check": "pnpm run lint && pnpm run test",
"clean": "rimraf dist temp",
"doc": "typedoc",
"lint": "eslint src",
"test": "vitest run"
},
"dependencies": {
"@envisim/matrix": "workspace:^0.1.2",
"@envisim/random": "workspace:^0.2.0",
"@envisim/utils": "workspace:^0.2.0"
},
"devDependencies": {
"@envisim/config-eslint": "workspace:*",
"@envisim/config-ts": "workspace:*",
"@envisim/config-typedoc": "workspace:*",
"eslint": "^9.25.1",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}