| Current Path : /home/emeraadmin/www/4d695/ |
| Current File : /home/emeraadmin/www/4d695/node-gyp.zip |
PK �]�\��_h h src/win_delay_load_hook.ccnu �[��� /*
* When this file is linked to a DLL, it sets up a delay-load hook that
* intervenes when the DLL is trying to load the host executable
* dynamically. Instead of trying to locate the .exe file it'll just
* return a handle to the process image.
*
* This allows compiled addons to work when the host executable is renamed.
*/
#ifdef _MSC_VER
#pragma managed(push, off)
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <delayimp.h>
#include <string.h>
static FARPROC WINAPI load_exe_hook(unsigned int event, DelayLoadInfo* info) {
HMODULE m;
if (event != dliNotePreLoadLibrary)
return NULL;
if (_stricmp(info->szDll, HOST_BINARY) != 0)
return NULL;
m = GetModuleHandle(NULL);
return (FARPROC) m;
}
decltype(__pfnDliNotifyHook2) __pfnDliNotifyHook2 = load_exe_hook;
#pragma managed(pop)
#endif
PK �]�\*k9�e e CONTRIBUTING.mdnu �[��� # Contributing to node-gyp
## Code of Conduct
Please read the
[Code of Conduct](https://github.com/nodejs/admin/blob/main/CODE_OF_CONDUCT.md)
which explains the minimum behavior expectations for node-gyp contributors.
<a id="developers-certificate-of-origin"></a>
## Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
* (a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or
* (b) The contribution is based upon previous work that, to the best
of my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or
* (c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
* (d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.
PK �]�\i�2H H package.jsonnu �[��� {
"_id": "node-gyp@10.1.0",
"_inBundle": true,
"_location": "/npm/node-gyp",
"_phantomChildren": {},
"_requiredBy": [
"/npm",
"/npm/@npmcli/run-script"
],
"author": {
"name": "Nathan Rajlich",
"email": "nathan@tootallnate.net",
"url": "http://tootallnate.net"
},
"bin": {
"node-gyp": "bin/node-gyp.js"
},
"bugs": {
"url": "https://github.com/nodejs/node-gyp/issues"
},
"dependencies": {
"env-paths": "^2.2.0",
"exponential-backoff": "^3.1.1",
"glob": "^10.3.10",
"graceful-fs": "^4.2.6",
"make-fetch-happen": "^13.0.0",
"nopt": "^7.0.0",
"proc-log": "^3.0.0",
"semver": "^7.3.5",
"tar": "^6.1.2",
"which": "^4.0.0"
},
"description": "Node.js native addon build tool",
"devDependencies": {
"bindings": "^1.5.0",
"cross-env": "^7.0.3",
"mocha": "^10.2.0",
"nan": "^2.14.2",
"require-inject": "^1.4.4",
"standard": "^17.0.0"
},
"engines": {
"node": "^16.14.0 || >=18.0.0"
},
"homepage": "https://github.com/nodejs/node-gyp#readme",
"installVersion": 11,
"keywords": [
"native",
"addon",
"module",
"c",
"c++",
"bindings",
"gyp"
],
"license": "MIT",
"main": "./lib/node-gyp.js",
"name": "node-gyp",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git://github.com/nodejs/node-gyp.git"
},
"scripts": {
"lint": "standard \"*/*.js\" \"test/**/*.js\" \".github/**/*.js\"",
"test": "cross-env NODE_GYP_NULL_LOGGER=true mocha --timeout 15000 test/test-download.js test/test-*"
},
"version": "10.1.0"
}
PK �]�\��<�e e release-please-config.jsonnu �[��� {
"packages": {
".": {
"include-component-in-tag": false,
"release-type": "node",
"changelog-sections": [
{ "type": "feat", "section": "Features", "hidden": false },
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
{ "type": "bin", "section": "Core", "hidden": false },
{ "type": "gyp", "section": "Core", "hidden": false },
{ "type": "lib", "section": "Core", "hidden": false },
{ "type": "src", "section": "Core", "hidden": false },
{ "type": "test", "section": "Tests", "hidden": false },
{ "type": "build", "section": "Core", "hidden": false },
{ "type": "clean", "section": "Core", "hidden": false },
{ "type": "configure", "section": "Core", "hidden": false },
{ "type": "install", "section": "Core", "hidden": false },
{ "type": "list", "section": "Core", "hidden": false },
{ "type": "rebuild", "section": "Core", "hidden": false },
{ "type": "remove", "section": "Core", "hidden": false },
{ "type": "deps", "section": "Core", "hidden": false },
{ "type": "python", "section": "Core", "hidden": false },
{ "type": "lin", "section": "Core", "hidden": false },
{ "type": "linux", "section": "Core", "hidden": false },
{ "type": "mac", "section": "Core", "hidden": false },
{ "type": "macos", "section": "Core", "hidden": false },
{ "type": "win", "section": "Core", "hidden": false },
{ "type": "windows", "section": "Core", "hidden": false },
{ "type": "zos", "section": "Core", "hidden": false },
{ "type": "doc", "section": "Doc", "hidden": false },
{ "type": "docs", "section": "Doc", "hidden": false },
{ "type": "readme", "section": "Doc", "hidden": false },
{ "type": "chore", "section": "Miscellaneous", "hidden": false },
{ "type": "refactor", "section": "Miscellaneous", "hidden": false },
{ "type": "ci", "section": "Miscellaneous", "hidden": false },
{ "type": "meta", "section": "Miscellaneous", "hidden": false }
]
}
}
}
PK �]�\�m`pX X "