-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
52
53
54
55
56
57
58
{
"name": "egydata",
"version": "1.1.1",
"description": "Structured Egyptian geographical and timezone data — governorates, cities, phone area codes, and timezone utilities.",
"main": "./dist/index.js",
"module": "./index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"egypt",
"egyptian",
"governorates",
"cities",
"geography",
"timezone",
"phone",
"area-codes",
"cairo",
"africa",
"arabic",
"محافظات",
"مصر"
],
"author": "Ahmed Ashraf <ahmdgun0@gmail.com> (https://github.com/ahmed-ashraf-dv)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ahmed-ashraf-dv/egydata.git"
},
"bugs": {
"url": "https://github.com/ahmed-ashraf-dv/egydata/issues"
},
"homepage": "https://github.com/ahmed-ashraf-dv/egydata#readme",
"files": [
"dist/",
"index.mjs",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}