-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "world-countries",
"description": "List of world countries in JSON, CSV, XML and Yaml",
"version": "5.0.0",
"module": "./index.mjs",
"main": "./index.cjs",
"types": "index.d.ts",
"keywords": ["countries", "world", "json", "csv", "xml", "yaml"],
"author": {
"name": "Mohammed Le Doze",
"url": "https://github.com/mledoze",
"email": "[email protected]"
},
"demos": [
"https://mledoze.github.io/countries/#examples"
],
"bugs": {
"url": "https://github.com/mledoze/countries/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mledoze/countries.git"
},
"licenses": [
{
"type": "ODbL-1.0",
"url": "https://opendatacommons.org/licenses/odbl/1.0/"
}
],
"homepage": "https://mledoze.github.io/countries/",
"files": [
"countries.json",
"data/*",
"dist/*",
"index.cjs",
"index.d.ts",
"index.mjs"
]
}