-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.46 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.46 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
{
"name": "bankdata-germany",
"version": "1.2600.0",
"description": "Data and BIC Validator for German Banks",
"author": "Markus Baumer <markus@baumer.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/baumerdev/bankdata-germany.git"
},
"homepage": "https://baumerdev.github.io/bankdata-germany/",
"license": "AGPL",
"keywords": [
"iban",
"sepa",
"bban",
"bank",
"bic",
"validator",
"germany",
"bankleitzahl",
"blz"
],
"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": {
"main": "ts-node src/main.ts",
"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 bankdata-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": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.20",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"esbuild": "^0.25.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.4.0",
"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.7",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-check-updates": "^17.1.14",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
}
}