forked from sigalor/iban-to-bic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "banking-tools",
"version": "1.0.8",
"description": "Forked Version Of The sigalor/iban-to-bic Package",
"browser": "./dist/bundle.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"test": "npx jest",
"build": "webpack",
"generate": "node ./src/generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidulman/iban-to-bic.git"
},
"keywords": [
"bic",
"iban",
"swift",
"banking"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidulman/iban-to-bic/issues"
},
"homepage": "https://github.com/davidulman/iban-to-bic#readme",
"dependencies": {
"ibantools": "^4.3.3",
"ts-loader": "^9.4.4"
},
"devDependencies": {
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.4",
"fs-extra": "^11.1.1",
"iconv-lite": "^0.6.3",
"jest": "^29.6.4",
"jsdom": "^22.1.0",
"node-fetch-commonjs": "^3.3.1",
"neat-csv": "^6.0.1",
"typescript": "^5.1.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.1.4",
"xlsx": "^0.18.5"
},
"main": "webpack.config.js",
"directories": {
"test": "test"
}
}