-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "@molgenis/vip-report-vcf",
"version": "3.1.0",
"description": "TypeScript VCF library with support for both reading and writing",
"scripts": {
"build": "tsc --build",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"!dist/tsconfig.tsbuildinfo"
],
"repository": {
"type": "git",
"url": "git+https://github.com/molgenis/vip-report-vcf.git"
},
"license": "LGPL-3.0",
"lint-staged": {
"src/**/*.ts": [
"eslint",
"prettier --write"
]
},
"bugs": {
"url": "https://github.com/molgenis/vip-report-vcf/issues"
},
"homepage": "https://github.com/molgenis/vip-report-vcf#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"engines": {
"node": "22",
"pnpm": "9"
}
}