forked from michaelwittig/node-i18n-iso-countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 2.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "i18n-iso-countries",
"version": "6.8.0",
"description": "i18n for ISO 3166-1 country codes",
"typings": "index.d.ts",
"keywords": [
"i18n",
"iso",
"3166",
"iso 3166",
"iso 3166-1",
"alpha",
"alpha-2",
"alpha-3",
"numeric",
"country",
"countries",
"af",
"am",
"ar",
"az",
"be",
"bg",
"bn",
"bs",
"ca",
"cs",
"cy",
"da",
"de",
"dv",
"el",
"en",
"es",
"et",
"eu",
"fa",
"fi",
"fr",
"gl",
"ha",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"km",
"ko",
"ku",
"ky",
"lt",
"lv",
"mk",
"ml",
"mn",
"ms",
"nb",
"nl",
"nn",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"sd",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"tg",
"th",
"tk",
"tr",
"tt",
"uk",
"ug",
"ur",
"uz",
"vi",
"zh"
],
"author": {
"name": "Andreas Wittig",
"email": "[email protected]"
},
"contributors": [
{
"name": "Michael Wittig",
"email": "[email protected]"
},
{
"name": "Bedis ElAcheche",
"email": "[email protected]"
},
{
"name": "Johann Behr",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/michaelwittig/node-i18n-iso-countries.git"
},
"dependencies": {
"diacritics": "1.3.0"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"madge": "3.7.0",
"mocha": "7.1.0",
"prettier": "^2.0.5"
},
"main": "entry-node",
"browser": "index",
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "make test",
"lint": "eslint **/*.js"
},
"bugs": {
"url": "https://github.com/michaelwittig/node-i18n-iso-countries/issues"
}
}