-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "@greycode/country_utils",
"version": "0.0.4",
"description": "A utility class for working with country data, including country codes, phone country codes, and more. This package provides a convenient way to access and work with country-related information in your JavaScript projects.",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.mjs",
"types": "./index.d.ts"
}
},
"main": "index.cjs",
"module": "index.mjs",
"types": "index.d.ts",
"files": [
"src/dist/**/*"
],
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kculz/country_utils.git"
},
"keywords": [
"countries",
"country",
"alpha-2",
"alpha-3",
"ISO code",
"numeric code",
"phone code",
"nodejs",
"express"
],
"author": "Kudzai Munyama",
"license": "MIT",
"bugs": {
"url": "https://github.com/kculz/country_utils/issues"
},
"homepage": "https://github.com/kculz/country_utils#readme",
"devDependencies": {
"typescript": "^5.4.5"
}
}