This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
forked from christsim/multicoin-address-validator
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
78 lines (78 loc) · 2.11 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
{
"name": "trezor-address-validator",
"description": "Multicoin address validator for Bitcoin and other altcoins.",
"keywords": [
"ada",
"btc",
"bitcoin",
"bitcoin cash",
"litecoin",
"decred",
"dogecoin",
"ethereum",
"ripple",
"dash",
"neo",
"gas",
"komodo",
"zcash",
"qtum",
"trx",
"nem",
"waves",
"altcoin",
"bankex",
"monero",
"segwit",
"crypto",
"address",
"wallet",
"validator",
"vertcoin",
"nano",
"raiblocks",
"javascript",
"browser",
"nodejs"
],
"version": "0.4.4",
"author": "Martin <[email protected]>",
"homepage": "https://github.com/trezor/trezor-address-validator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/trezor/trezor-address-validator.git"
},
"main": "src/wallet_address_validator",
"engines": {
"node": "*"
},
"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.7",
"bech32": "^2.0.0",
"browserify-bignum": "^1.3.0-2",
"cbor-js": "^0.1.0",
"crc": "^3.8.0",
"groestl-hash-js": "1.0.0",
"jssha": "2.3.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"browserify": "^16.5.0",
"chai": "^4.2.0",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^7.0.0",
"uglify-es": "^3.3.9"
}
}