-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 769 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 769 Bytes
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
{
"name": "currency-codes",
"types": "index.d.ts",
"version": "2.2.0",
"description": "Lookup currency codes based on ISO 4217",
"repository": "git://github.com/freeall/currency-codes.git",
"keywords": [
"iso4217",
"iso",
"4217",
"currency",
"currencies",
"code",
"codes",
"lookup"
],
"dependencies": {
"first-match": "~0.0.1",
"nub": "~0.0.0"
},
"devDependencies": {
"@gouch/to-title-case": "^2.2.1",
"axios": "^0.19.2",
"xml2js": "^0.4.23"
},
"scripts": {
"test": "node test.js",
"iso:fetch-xml": "node scripts/fetch-iso-4217-xml.js",
"iso:ingest-xml": "node scripts/ingest-iso-4217-xml.js",
"iso": "npm run iso:fetch-xml && npm run iso:ingest-xml"
},
"license": "MIT"
}