-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.13 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
{
"name": "iban-validator",
"version": "1.0.0",
"description": "IBAN validator",
"main": "index.js",
"scripts": {
"test": "jest test/*",
"test:mocha": "mocha --timeout 10000 --use_strict --recursive --check-leaks --use_strict --exclude test/CY/CY.test.js",
"install": "napa",
"postinstall": "patch-package"
},
"napa": {
"kontonummer.js": "jop-io/kontonummer.js",
"oib-validator.js": "MiroslavJelaska/iban-hr.js",
"njs-tfso-bankaccount-validation": "tfso/njs-tfso-bankaccount-validation",
"banking-toolkit": "Pygocentrus/banking-toolkit",
"unified-bank-utils": "fohlin/unified-bank-utils"
},
"keywords": [
"IBAN"
],
"author": "Emmanuel Haguet",
"license": "MIT",
"dependencies": {
"IBAN-JStools": "git://github.com/MechaPoulpe/IBAN-JStools.git",
"bic-from-iban": "^1.0.0",
"cross-fetch": "^3.0.1",
"deposit-iban": "^1.8.0",
"fast-iban": "^1.1.0",
"finnish-bank-utils": "^1.3.3",
"fints-institute-db": "^0.9.0",
"iban": "0.0.12",
"ibankit": "^1.2.2",
"il-bank-account-validator": "^1.0.4",
"iran-sheba": "^1.0.4",
"is-currency-code": "^1.2.0",
"is-valid-account-number": "^2.0.1",
"miniban": "^1.1.1",
"node-dbf": "^0.4.0",
"php.js": "^0.1.1",
"run-php": "0.0.1",
"tslib": "^1.9.3",
"uk-modulus-checking": "0.1.0",
"validator.js-asserts": "^3.1.0",
"webpack-dev-server": "^3.2.0",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"exec-php": "0.0.5",
"fetch-mock": "^7.3.0",
"file-loader": "^3.0.1",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.1.1",
"jest-puppeteer": "^4.0.0",
"mocha": "^6.0.1",
"mocha-loader": "^2.0.0",
"napa": "^3.0.0",
"patch-package": "^6.0.2",
"puppeteer": "^1.12.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"automock": false,
"collectCoverage": true,
"setupFiles": [
"./setupJest.js"
]
}
}