lightning
Advanced tools
Comparing version 1.0.0 to 1.0.1
# Versions | ||
## 1.0.1 | ||
- Add typescript support | ||
## 1.0.0 | ||
@@ -4,0 +8,0 @@ |
11
index.js
@@ -1,4 +0,7 @@ | ||
const {authenticatedLndGrpc} = require('./lnd_grpc'); | ||
const {unauthenticatedLndGrpc} = require('./lnd_grpc'); | ||
module.exports = {authenticatedLndGrpc, unauthenticatedLndGrpc}; | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const authenticated_lnd_grpc_1 = require("./typescript/authenticated_lnd_grpc"); | ||
exports.authenticatedLndGrpc = authenticated_lnd_grpc_1.default; | ||
const unauthenticated_lnd_grpc_1 = require("./typescript/unauthenticated_lnd_grpc"); | ||
exports.unauthenticatedLndGrpc = unauthenticated_lnd_grpc_1.default; | ||
//# sourceMappingURL=index.js.map |
@@ -22,3 +22,3 @@ const {join} = require('path'); | ||
{ | ||
[cert]: <Base64 or Hex Serialized LND TLS Cert> | ||
[cert]: <Base64 or Hex Serialized LND TLS Cert String> | ||
[socket]: <Host:Port String> | ||
@@ -25,0 +25,0 @@ } |
@@ -8,2 +8,3 @@ { | ||
"@grpc/proto-loader": "0.5.3", | ||
"async": "3.1.0", | ||
"grpc": "1.24.2", | ||
@@ -15,3 +16,6 @@ "is-base64": "1.0.0", | ||
"devDependencies": { | ||
"tap": "14.10.5" | ||
"request": "2.88.0", | ||
"request-promise-native": "1.0.8", | ||
"tap": "14.10.5", | ||
"typescript": "3.7.4" | ||
}, | ||
@@ -34,5 +38,8 @@ "engines": { | ||
"scripts": { | ||
"test": "tap test/lnd_grpc/*.js" | ||
"prepare": "npm run tsc", | ||
"test": "npm run tsc && tap test/lnd_grpc/*.js", | ||
"tsc": "./node_modules/typescript/bin/tsc --build tsconfig.json" | ||
}, | ||
"version": "1.0.0" | ||
"types": "index.d.ts", | ||
"version": "1.0.1" | ||
} |
@@ -83,3 +83,3 @@ # Lightning | ||
{ | ||
[cert]: <Base64 or Hex Serialized LND TLS Cert> | ||
[cert]: <Base64 or Hex Serialized LND TLS Cert String> | ||
[socket]: <Host:Port String> | ||
@@ -86,0 +86,0 @@ } |
Sorry, the diff of this file is not supported yet
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
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
182625
44
650
0
5
4
5
+ Addedasync@3.1.0
+ Addedasync@3.1.0(transitive)