-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.24 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.24 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
79
80
81
82
83
{
"name": "ibantools-germany",
"version": "2.2600.0",
"description": "IBAN Validator and Generator for German Bank Accounts",
"author": "Markus Baumer <markus@baumer.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/baumerdev/ibantools-germany.git"
},
"homepage": "https://baumerdev.github.io/ibantools-germany/",
"license": "MIT OR MPL-2.0",
"keywords": [
"iban",
"sepa",
"bban",
"bank",
"account",
"validation",
"validator",
"generator",
"germany",
"kontonummer",
"bankleitzahl",
"pruefziffer",
"pruefzifferberechnungsmethode"
],
"type": "commonjs",
"main": "./dist/cjs/main.js",
"exports": {
".": {
"require": {
"types": "./dist/cjs/main.d.ts",
"default": "./dist/cjs/main.js"
},
"import": {
"types": "./dist/esm/main.d.mts",
"default": "./dist/esm/main.mjs"
}
}
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE",
"LICENSE.MIT",
"LICENSE.MPL-2.0"
],
"scripts": {
"import": "ts-node src/cli/import.ts",
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "jest",
"test:dev": "jest --watchAll",
"test:coverage": "rimraf coverage && jest --coverage",
"clean": "rimraf dist docs coverage package ibantools-germany*.tgz",
"docs": "rimraf docs && typedoc --entryPoints src/main.ts --out docs/",
"build": "tsc -p tsconfig.build.json",
"build:all": "rimraf dist && npm run build && npm run esm-wrapper && npm run esbuild",
"esm-wrapper": "ts-node src/cli/esm-wrapper.ts",
"esbuild": "esbuild src/browser.ts --bundle --minify --outfile=dist/build/browser.js",
"prepare": "husky",
"prepack": "npm run clean && npm run lint && npm run test && npm run build:all"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.2",
"esbuild": "^0.27.3",
"husky": "^9.1.7",
"jest": "30.2.0",
"jest-environment-jsdom": "^30.2.0",
"npm-check-updates": "^19.3.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.16",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
}
}