-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "country-codes-list",
"version": "2.0.0",
"description": "List of codes per country (languages, calling codes, currency codes, etc) with full TypeScript support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synergy-Shock/country-codes-list.git"
},
"keywords": [
"country",
"code",
"currency",
"list",
"language",
"calling",
"codes",
"countries",
"iso",
"phone",
"international",
"i18n",
"typescript",
"tin"
],
"author": "Luciano Andrés Ganga Carabante",
"license": "MIT",
"bugs": {
"url": "https://github.com/Synergy-Shock/country-codes-list/issues"
},
"homepage": "https://github.com/Synergy-Shock/country-codes-list#readme",
"devDependencies": {
"@types/jest": "^29.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^4.9.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
]
}
}