-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "country-codes-and-flags",
"version": "1.0.3",
"description": "A TypeScript library mapping country names and ISO codes to their corresponding flag emoji",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kgarrity22/country-codes-and-flags.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"keywords": [
"country-ids",
"country flags",
"country flag emojis",
"alpha2",
"alpha3",
"ISO codes",
"country codes",
"flag emojis",
"flags"
],
"author": "Kathleen Garrity",
"license": "MIT",
"bugs": {
"url": "https://github.com/kgarrity22/country-codes-and-flags/issues"
},
"homepage": "https://github.com/kgarrity22/country-codes-and-flags#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"dependencies": {
"execa": "^9.5.1"
}
}