-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 KB
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
{
"name": "locale-currency",
"version": "1.0.0",
"description": "A map of locale codes to ISO 4217 currency codes. Supports BCP 47, i18n, and ISO 3166-1 alpha-2 formats.",
"type": "module",
"main": "index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./index.js",
"require": "./index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"test": "node test.js && npm run test:types && npm run test:cjs",
"test:types": "tsc --noEmit",
"test:cjs": "node test-cjs.cjs"
},
"keywords": [
"locale",
"currency",
"i18n",
"internationalization",
"BCP 47",
"ISO 4217",
"ISO 3166-1",
"country code"
],
"author": {
"name": "Thomas Deegan",
"email": "tadeegan@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tadeegan/locale-currency.git"
},
"license": "BSD-2-Clause",
"engines": {
"node": ">=14.0.0"
},
"files": [
"index.js",
"index.d.ts",
"map.js"
],
"devDependencies": {
"@types/node": "^24.6.0",
"typescript": "^5.9.2"
}
}