Comparing version 1.2.4 to 1.2.5
@@ -34,3 +34,3 @@ { | ||
"footer": "<style>#forkongithub {display:none;}#forkongithub a{background:#000;color:#fff;text-decoration:none;font-family:arial, sans-serif;text-align:center;font-weight:bold;padding:5px 40px;font-size:1rem;line-height:2rem;position:relative;transition:0.5s;}#forkongithub a:hover{background:#33B5E5;color:#fff;}#forkongithub a::before,#forkongithub a::after{content:\"\";width:100%;display:block;position:absolute;top:1px;left:0;height:1px;background:#fff;}#forkongithub a::after{bottom:1px;top:auto;}@media screen and (min-width:800px){#forkongithub{z-index:10000;position:fixed;display:block;top:0;right:0;width:200px;overflow:hidden;height:200px;}#forkongithub a{width:200px;z-index:10000;position:fixed;top:25px;right:-60px;transform:rotate(45deg);-webkit-transform:rotate(45deg);box-shadow:4px 4px 10px rgba(0,0,0,0.8);}}</style><span id=\"forkongithub\"><a href=\"https://github.com/fresc81/node-winreg\">Fork me on GitHub</a></span>", | ||
"copyright": "Copyright © 2016 Paul Bottin.", | ||
"copyright": "Copyright © 2023 Paul Bottin.", | ||
"navType": "vertical", | ||
@@ -37,0 +37,0 @@ "linenums": true, |
@@ -297,3 +297,3 @@ /************************************************************************************************************ | ||
*/ | ||
this.__defineGetter__('path', function () { return (_host.length == 0 ? '' : '\\\\' + _host + '\\') + _hive + _key; }); | ||
this.__defineGetter__('path', function () { return '"' + (_host.length == 0 ? '' : '\\\\' + _host + '\\') + _hive + _key + '"'; }); | ||
@@ -447,2 +447,4 @@ /** | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -530,2 +532,4 @@ }) | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -622,2 +626,4 @@ }) | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -714,2 +720,4 @@ }) | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -765,2 +773,4 @@ }) | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -814,2 +824,4 @@ }) | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -873,2 +885,4 @@ }) | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -922,2 +936,4 @@ }) | ||
env: process.env, | ||
shell: true, | ||
windowsHide: true, | ||
stdio: [ 'ignore', 'pipe', 'pipe' ] | ||
@@ -924,0 +940,0 @@ }) |
{ | ||
"name": "winreg", | ||
"version": "1.2.4", | ||
"version": "1.2.5", | ||
"description": "provides access to the windows registry through the REG tool", | ||
@@ -26,8 +26,9 @@ "main": "lib/registry.js", | ||
"devDependencies": { | ||
"ink-docstrap": "^1.1.4", | ||
"jsdoc": "^3.4.0", | ||
"mocha": "^3.0.2", | ||
"ink-docstrap": "^1.3.2", | ||
"jsdoc": "^4.0.2", | ||
"mocha": "^10.2.0", | ||
"moment": "^2.11.2", | ||
"taffydb": "^2.7.3", | ||
"unit.js": "^2.0.0" | ||
} | ||
} |
[![NPM](https://nodei.co/npm/winreg.png?downloads=true&stars=true)](https://nodei.co/npm/winreg/) | ||
[![Build status](https://ci.appveyor.com/api/projects/status/sxal24cfk9nlmib9?svg=true)](https://ci.appveyor.com/project/fresc81/node-winreg) [![Dependency Status](https://david-dm.org/fresc81/node-winreg.svg)](https://david-dm.org/fresc81/node-winreg) [![devDependency Status](https://david-dm.org/fresc81/node-winreg/dev-status.svg)](https://david-dm.org/fresc81/node-winreg#info=devDependencies) [![Join the chat at https://gitter.im/fresc81/node-winreg](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/fresc81/node-winreg?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
[![Join the chat at https://gitter.im/fresc81/node-winreg](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/fresc81/node-winreg?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
@@ -20,3 +20,3 @@ | ||
If you prefer to install _without the delopement tools used to generate the HTML documentation_ (into a production environment for example) you should use the following command. | ||
If you prefer to install _without the development tools used to generate the HTML documentation_ (into a production environment for example) you should use the following command. | ||
@@ -123,2 +123,2 @@ ```shell | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
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
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
1095
123
44070
6
239010
6