From 02f43304b40ca1915d8d0165f49a86f338ab978d Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 1 Mar 2017 09:16:41 -0800 Subject: [PATCH] pkg: add pkg.js. --- lib/pkg.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/pkg.js diff --git a/lib/pkg.js b/lib/pkg.js new file mode 100644 index 00000000..e9d4a67d --- /dev/null +++ b/lib/pkg.js @@ -0,0 +1,21 @@ +/*! + * pkg.js - package constants + * Copyright (c) 2014-2017, Christopher Jeffrey (MIT License). + * https://github.com/bcoin-org/bcoin + */ + +'use strict'; + +/** + * Current version string. + * @const {String} + */ + +exports.version = 'v1.0.0-beta.6'; + +/** + * Repository URL. + * @const {String} + */ + +exports.url = 'https://github.com/bcoin-org/bcoin';