-
-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added file required for publishing to npm
- Loading branch information
1 parent
e22ec33
commit d6c7d20
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
node_modules/* | ||
docs/* | ||
.gitattributes | ||
.gitignore | ||
.npmignore | ||
package.json | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "world_countries", | ||
"version": "1.0.0", | ||
"description": "Constantly updated lists of world countries and their associated alpha-2, alpha-3 and numeric codes as defined by the ISO 3166 standard, available in CVS, JSON and SQL formats, in multiple languages and with national flags included", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/stefangabos/world_countries.git" | ||
}, | ||
"keywords": [ | ||
"countries", | ||
"flags", | ||
"national-flags", | ||
"iso-3166", | ||
"sql", | ||
"json", | ||
"csv" | ||
], | ||
"author": "Stefan Gabos", | ||
"license": "LGPL-3.0-or-later", | ||
"bugs": { | ||
"url": "https://github.com/stefangabos/world_countries/issues" | ||
}, | ||
"homepage": "https://github.com/stefangabos/world_countries#readme", | ||
"main": "index.js", | ||
"directories": { | ||
"doc": "docs" | ||
} | ||
} |