forked from reportingdev/currency-codes-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.83 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
{
"name": "@holm/currency-codes-ts",
"version": "3.1.10",
"description": "A TypeScript library for ISO 4217 currency codes. Efficiently lookup and validate currency codes, retrieve associated countries, and more.",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/mjs/index.js"
}
},
"repository": "git://github.com/reportingdev/currency-codes-ts.git",
"homepage": "https://github.com/reportingdev/currency-codes-ts#readme",
"bugs": {
"url": "https://github.com/reportingdev/currency-codes-ts/issues"
},
"author": "Braden Ericson <[email protected]>",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@gouch/to-title-case": "^2.2.1",
"@types/lodash": "^4.14.202",
"assert": "^2.1.0",
"axios": "^0.19.2",
"xml2js": "^0.4.23"
},
"scripts": {
"test": "node test.mjs",
"iso:fetch-xml": "node scripts/fetch-iso-4217-xml.cjs",
"iso:ingest-xml": "node scripts/ingest-iso-4217-xml.cjs",
"iso": "npm run iso:fetch-xml && npm run iso:ingest-xml",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh"
},
"engines": {
"node": ">=14"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"private": false,
"license": "MIT",
"keywords": [
"iso4217",
"iso",
"4217",
"currency",
"currencies",
"code",
"codes",
"lookup",
"finance",
"exchange",
"conversion",
"money",
"country",
"international",
"banking",
"rate",
"data",
"financial",
"fintech",
"payment",
"symbol",
"json",
"api",
"utils",
"utility",
"global",
"localization",
"i18n",
"typescript"
]
}