forked from handshake-org/hsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpkg.js
81 lines (61 loc) · 982 Bytes
/
pkg.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*!
* pkg.js - package constants
* Copyright (c) 2017-2018, Christopher Jeffrey (MIT License).
* https://github.com/handshake-org/hsd
*/
'use strict';
const pkg = exports;
/**
* Package Name
* @const {String}
* @default
*/
pkg.name = 'hsd';
/**
* Project Name
* @const {String}
* @default
*/
pkg.core = 'hsd';
/**
* Organization Name
* @const {String}
* @default
*/
pkg.organization = 'handshake-org';
/**
* Currency Name
* @const {String}
* @default
*/
pkg.currency = 'handshake';
/**
* Currency Unit
* @const {String}
* @default
*/
pkg.unit = 'hns';
/**
* Base Unit (dollarydoos!)
* @const {String}
* @default
*/
pkg.base = 'doo';
/**
* Config file name.
* @const {String}
* @default
*/
pkg.cfg = `${pkg.core}.conf`;
/**
* Current version string.
* @const {String}
* @default
*/
pkg.version = '0.0.0';
/**
* Repository URL.
* @const {String}
* @default
*/
pkg.url = `https://github.com/${pkg.organization}/${pkg.name}`;