-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.61 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
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
84
85
86
87
{
"name": "ibantools-germany",
"version": "1.2403.1",
"description": "IBAN Validator and Generator for German Bank Accounts",
"author": "Markus Baumer <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/baumerdev/ibantools-germany.git"
},
"homepage": "https://baumerdev.github.io/ibantools-germany/",
"license": "AGPL",
"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"
],
"scripts": {
"import": "ts-node src/cli/import.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src/ --ext .js,.jsx,.ts,.tsx --fix",
"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 install",
"prepack": "npm run clean && npm run lint && npm run test && npm run build:all"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"husky": "^9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-check-updates": "^17.1.11",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
}
}