bitcoin-address-validation
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "bitcoin-address-validation", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Validate any Bitcoin address - Bech32, P2SH and P2PKH", | ||
@@ -10,2 +10,3 @@ "homepage": "https://github.com/ruigomeseu/bitcoin-address-validation", | ||
"unpkg": "./lib/index.umd.js", | ||
"types": "./lib/types.d.ts", | ||
"scripts": { | ||
@@ -51,2 +52,3 @@ "test": "rollup -c && mocha --recursive", | ||
"rollup-plugin-commonjs": "^10.0.1", | ||
"rollup-plugin-copy": "^3.3.0", | ||
"rollup-plugin-node-builtins": "^2.1.2", | ||
@@ -59,4 +61,3 @@ "rollup-plugin-node-resolve": "^5.2.0" | ||
"sha.js": "^2.4.11" | ||
}, | ||
"typings": "./typings.d.ts" | ||
} | ||
} |
import nodeResolve from 'rollup-plugin-node-resolve'; | ||
import commonjs from 'rollup-plugin-commonjs'; | ||
import copy from 'rollup-plugin-copy'; | ||
import builtins from 'rollup-plugin-node-builtins'; | ||
@@ -20,3 +21,8 @@ import pkg from './package.json'; | ||
commonjs(), | ||
builtins() | ||
builtins(), | ||
copy({ | ||
targets: [ | ||
{ src: './types.d.ts', dest: './lib' } | ||
] | ||
}) | ||
] | ||
@@ -23,0 +29,0 @@ }, |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101115
9
3033
17