ibantools 4.3.4 → 4.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ibantools.d.ts +7 -1
- package/build/ibantools.js +249 -16
- package/jsnext/ibantools.js +249 -16
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ibantools",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.6",
|
|
4
4
|
"description": "Validation, extraction and creation of IBAN, BBAN, BIC/SWIFT numbers plus some other helpful stuff like ISO 3136-1 alpha 2 country list",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"IBAN",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"SWIFT",
|
|
11
11
|
"ISO 3136-1 alpha-2"
|
|
12
12
|
],
|
|
13
|
+
"sideEffects": false,
|
|
13
14
|
"homepage": "https://github.com/Simplify/ibantools",
|
|
14
15
|
"bugs": "https://github.com/Simplify/ibantools/issues",
|
|
15
16
|
"main": "build/ibantools.js",
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
"build-module": "rm -rf jsnext && npx tsc src/*.ts --target es5 --module es2015 --outDir ./jsnext/",
|
|
43
44
|
"test": "npm run build && mocha 'test/**/*.js'",
|
|
44
45
|
"karma": "karma start --single-run",
|
|
45
|
-
"coverage": "nyc mocha && nyc report --reporter=text-lcov
|
|
46
|
+
"coverage": "nyc mocha && nyc report --reporter=text-lcov > test.lcov",
|
|
46
47
|
"lint": "eslint 'src/**/*.ts' 'test/**/*.js'",
|
|
47
48
|
"prepare": "npm run build-node",
|
|
48
49
|
"docs": "typedoc src/ibantools.ts",
|
|
@@ -54,14 +55,14 @@
|
|
|
54
55
|
},
|
|
55
56
|
"license": "MPL-2.0",
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
58
|
-
"@typescript-eslint/parser": "^
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
59
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
59
60
|
"chai": "^4.3.4",
|
|
60
|
-
"coveralls": "^
|
|
61
|
+
"coveralls-next": "^4.2.0",
|
|
61
62
|
"docdash": "^2.0.0",
|
|
62
63
|
"eslint": "^8.0.0",
|
|
63
64
|
"eslint-config-prettier": "^9.0.0",
|
|
64
|
-
"eslint-plugin-prettier": "^
|
|
65
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
65
66
|
"jasmine-core": "^5.0.0",
|
|
66
67
|
"karma": "^6.3.4",
|
|
67
68
|
"karma-chrome-launcher": "^3.1",
|
|
@@ -70,10 +71,10 @@
|
|
|
70
71
|
"mocha": "^10.0.0",
|
|
71
72
|
"mocha-lcov-reporter": "^1.2.0",
|
|
72
73
|
"nyc": "^15.1.0",
|
|
73
|
-
"prettier": "^
|
|
74
|
+
"prettier": "^3.0.3",
|
|
74
75
|
"requirejs": "^2.3.6",
|
|
75
|
-
"typedoc": "^0.
|
|
76
|
-
"typescript": "^5.
|
|
76
|
+
"typedoc": "^0.25.1",
|
|
77
|
+
"typescript": "^5.2.2"
|
|
77
78
|
},
|
|
78
79
|
"resolutions": {
|
|
79
80
|
"source-map": "^0.8.0-beta.0"
|