forked from Swyftx/crypto-address-validator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.5 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
{
"name": "@ramp-network/crypto-address-validator",
"description": "Wallet address validator for Bitcoin and other Altcoins.",
"main": "dist/ramp-crypto-address-validator.umd.js",
"module": "dist/ramp-crypto-address-validator.es5.js",
"typings": "dist/wallet_address_validator.d.ts",
"files": [
"dist/**"
],
"version": "2.1.0",
"author": "Ramp Network <[email protected]>",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/RampNetwork/crypto-address-validator",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RampNetwork/crypto-address-validator"
},
"scripts": {
"test:node": "mocha -r ts-node/register test/*.ts",
"test:browser": "karma start",
"test": "yarn run build && npm run test:node && npm run test:browser",
"test:nobuild": "npm run test:node && npm run test:browser",
"start": "npm run build && npm test",
"lint": "eslint --ext .ts .",
"lint:fix": "yarn lint --fix",
"build:ts": "tsc",
"build:rollup": "rollup -c rollup.config.ts",
"build": "rimraf dist && yarn run build:rollup"
},
"dependencies": {
"base-x": "^3.0.4",
"bchaddrjs-slp": "^0.2.14",
"bech32": "^2.0.0",
"blake-hash": "^2.0.0",
"blakejs": "^1.1.1",
"bs58": "^4.0.1",
"cbor": "^8.1.0",
"crc": "^4.1.0",
"js-sha512": "^0.8.0",
"jssha": "3.2.0",
"keccak": "^3.0.2",
"rfc4648": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.3.0",
"@types/keccak": "^3.0.1",
"@types/mocha": "^9.0.0",
"@typescript-eslint/parser": "^5.10.2",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"crypto-browserify": "^3.12.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"karma": "^6.3.13",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^9.1.3",
"node-gzip": "^1.1.2",
"prettier": "^2.5.1",
"prettysize": "^2.0.0",
"puppeteer": "^13.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.67.0",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-uglify": "^6.0.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"webpack": "^5.68.0"
},
"standard": {
"ignore": [
"dist/"
]
}
}