forked from ognus/wallet-address-validator
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
102 lines (102 loc) · 2.23 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
{
"name": "cryptocurrency-address-validator",
"description": "Crypto wallet address validator for Bitcoin and other Altcoins.",
"keywords": [
"auroracoin",
"beavercoin",
"biocoin",
"bitcoingold",
"bitcoin",
"bitcoin cash",
"bitcoinprivate",
"bitcoinz",
"callisto",
"cardano",
"digibyte",
"eos",
"ethereumclassic",
"etherzero",
"freicoin",
"garlicoin",
"hush",
"icon",
"iota",
"megacoin",
"monero",
"namecoin",
"nano",
"nem",
"railblocks",
"peercoin",
"primecoin",
"protoshares",
"qash",
"republicprotocol",
"snowgem",
"stellarlumens",
"tronix",
"tron",
"vertcoin",
"vechain",
"votecoin",
"zclassic",
"zencash",
"litecoin",
"decred",
"dogecoin",
"ethereum",
"ripple",
"dash",
"neo",
"gas",
"komodo",
"zcash",
"qtum",
"altcoin",
"crypto",
"address",
"wallet",
"validator",
"javascript",
"browser",
"nodejs"
],
"version": "0.1.3",
"author": "Aditio Agung Nugroho <[email protected]>",
"homepage": "https://github.com/aditioan/crypto-address-validator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aditioan/crypto-address-validator.git"
},
"main": "src/crypto_address_validator",
"engines": {
"node": "*"
},
"scripts": {
"bundle": "browserify src/crypto_address_validator.js --standalone CAValidator --outfile dist/crypto-address-validator.js",
"minify": "uglifyjs -c -m -o dist/crypto-address-validator.min.js -- dist/crypto-address-validator.js",
"test:node": "mocha test",
"test:browser": "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.4",
"bchaddrjs": "^0.3.0",
"crypto-js": "^3.1.9-1",
"iota.lib.js": "^0.4.7",
"jssha": "2.3.1",
"uglify-es": "^3.3.9"
},
"devDependencies": {
"browserify": "^15.1.0",
"chai": "^4.1.2",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.0.2",
"uglify-js": "^3.3.13"
}
}