From d6c7d206ead4f9889b2505666ed2a5e9844d4e9e Mon Sep 17 00:00:00 2001 From: stefangabos Date: Thu, 2 Apr 2020 09:34:30 +0300 Subject: [PATCH] Added file required for publishing to npm --- .npmignore | 7 +++++++ package.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .npmignore create mode 100644 package.json diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..3f7557b --- /dev/null +++ b/.npmignore @@ -0,0 +1,7 @@ +node_modules/* +docs/* +.gitattributes +.gitignore +.npmignore +package.json +package-lock.json \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..5f55c11 --- /dev/null +++ b/package.json @@ -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" + } +}