This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
forked from Bereket-G/validate-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
178 lines (178 loc) · 4.92 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "@yellowcard/validate-wallet",
"description": "Multicoin address validator for Bitcoin and other Altcoins.",
"keywords": [
"0x","zrx",
"Aave Coin","aave",
"Algorand","algo",
"Aragon","ant",
"Augur","rep",
"AugurV2","repv2",
"AuroraCoin","aur",
"Avalance","avax",
"Bancor","bnt",
"Bankex","bkx",
"Basic Attention Token","bat",
"BeaverCoin","bvc",
"Binance","bnb",
"BioCoin","bio",
"Bitcoin","btc",
"Bitcoin SV","bsv",
"BitcoinCash","bch",
"BitcoinGold","btg",
"BitcoinPrivate","btcp",
"BitcoinZ","btcz",
"BlockTrade","btt",
"BTU Protocol","btu",
"Callisto","clo",
"Cardano","ada",
"Chainlink","link",
"Civic","cvc",
"Compound","comp",
"Cred","lba",
"Crypto.com Coin","cro",
"CUSD","cusd",
"CELO","celo",
"Dash","dash",
"Decentraland","mana",
"Decred","dcr",
"DigiByte","dgb",
"District0x","dnt",
"DogeCoin","doge",
"Enjin Coin","enj",
"EOS","eos",
"Ethereum","eth",
"Ethereum POW","ethpow",
"EthereumClassic","etc",
"EtherZero","etz",
"Expanse","exp",
"Flare","flr",
"FirmaChain","fct",
"FreiCoin","frc",
"GameCredits","game",
"GarliCoin","grlc",
"Gnosis","gno",
"Golem","glm",
"Golem (GNT)","gnt",
"HedgeTrade","hedg",
"Hush","hush",
"HyperSpace","xsc",
"iExec RLC","rlc",
"Komodo","kmd",
"LBRY Credits","lbc",
"LiteCoin","ltc",
"loki","loki",
"Loom Network","loom",
"Maker","mkr",
"Matchpool","gup",
"Matic","matic",
"MegaCoin","mec",
"Melon","mln",
"Metal","mtl",
"Monero","xmr",
"Multi-collateral DAI","dai",
"NameCoin","nmc",
"Nano","nano",
"Nem","xem",
"Neo","neo",
"NeoGas","gas",
"Numeraire","nmr",
"Ocean Protocol","ocean",
"Odyssey","ocn",
"OmiseGO","omg",
"Paxos","pax",
"PeerCoin","ppc",
"PIVX","pivx",
"Polkadot","dot",
"Polymath","poly",
"PrimeCoin","xpm",
"ProtoShares","pts",
"Qtum","qtum",
"Quant","qnt",
"Quantum Resistant Ledger","qrl",
"RaiBlocks","xrb",
"Ripio Credit Network","rcn",
"Ripple","xrp",
"Salt","salt",
"Serve","serv",
"Siacoin","sc",
"SnowGem","sng",
"Solana","sol",
"SolarCoin","slr",
"SOLVE","solve",
"Spendcoin","spnd",
"Status","snt",
"Stellar","xlm",
"Storj","storj",
"Storm","storm",
"StormX","stmx",
"Swarm City","swt",
"Synthetix Network","snx",
"Tap","xtp",
"TEMCO","temco",
"TenX","pay",
"Tether","usdt",
"Tezos","xtz",
"Tron","trx",
"TrueUSD","tusd",
"Uniswap Coin","uni",
"USD Coin","usdc",
"VeChain","vet",
"VertCoin","vtc",
"Viberate","vib",
"VoteCoin","vot",
"Waves","waves",
"Wings","wings",
"ZCash","zec",
"ZClassic","zcl",
"ZenCash","zen"
],
"version": "0.5.15",
"author": "Bereket <[email protected]>",
"homepage": "https://github.com/yellowcardfinancial/wallet-address-validator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yellowcardfinancial/wallet-address-validator"
},
"main": "src/wallet_address_validator",
"engines": {
"node": ">=12.0.0"
},
"engineStrict": true,
"scripts": {
"bundle": "browserify src/wallet_address_validator.js --standalone WAValidator --outfile dist/wallet-address-validator.js",
"minify": "uglifyjs -c -m -o dist/wallet-address-validator.min.js -- dist/wallet-address-validator.js",
"test:node": "mocha test",
"test:browser": "npm run bundle && npm run minify && karma start",
"test": "npm run test:node && npm run test:browser",
"start": "npm run bundle && npm run minify && npm test"
},
"dependencies": {
"base-x": "^3.0.9",
"browserify-bignum": "^1.3.0-2",
"bundle": "^2.1.0",
"cbor-js": "^0.1.0",
"crc": "^3.8.0",
"js-sha512": "^0.8.0",
"jssha": "^2.4.2",
"lodash.isequal": "^4.5.0",
"minify": "^6.0.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.4",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"minify": "^6.0.1",
"mocha": "^8.3.2",
"uglify-es": "^3.3.9"
},
"standard": {
"ignore": [
"dist/"
]
}
}