-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
{
"name": "bitcoin-address-validation",
"version": "2.2.3",
"description": "Validate any Bitcoin address - P2WSH, P2WPKH, P2SH, P2PKH - Mainnet & Testnet",
"homepage": "https://github.com/ruigomeseu/bitcoin-address-validation",
"bugs": "https://github.com/ruigomeseu/bitcoin-address-validation/issues",
"main": "./lib/index.cjs.js",
"module": "./lib/index.esm.js",
"unpkg": "./lib/index.umd.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "rimraf lib && rollup -c",
"test": "jest",
"test:coverage": "jest --coverage",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"address",
"bitcoin",
"btc",
"validation",
"mainnet",
"testnet",
"bech32",
"p2sh",
"p2wpkh",
"p2wsh",
"p2pkh"
],
"author": {
"name": "Rui Gomes",
"email": "[email protected]",
"url": "https://ruigomes.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ruigomeseu/bitcoin-address-validation"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/sha.js": "^2.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.39.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5"
},
"dependencies": {
"base58-js": "^1.0.0",
"bech32": "^2.0.0",
"sha256-uint8array": "^0.10.3"
}
}