Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
16
node_modules/@npmcli/node-gyp/README.md
generated
vendored
Normal file
16
node_modules/@npmcli/node-gyp/README.md
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
# @npmcli/node-gyp
|
||||
|
||||
This is the module npm uses to decide whether a package should be built
|
||||
using [`node-gyp`](https://github.com/nodejs/node-gyp) by default.
|
||||
|
||||
## API
|
||||
|
||||
* `isNodeGypPackage(path)`
|
||||
|
||||
Returns a Promise that resolves to `true` or `false` based on whether the
|
||||
package at `path` has a `binding.gyp` file.
|
||||
|
||||
* `defaultGypInstallScript`
|
||||
|
||||
A string with the default string that should be used as the `install`
|
||||
script for node-gyp packages.
|
14
node_modules/@npmcli/node-gyp/lib/index.js
generated
vendored
Normal file
14
node_modules/@npmcli/node-gyp/lib/index.js
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
const util = require('util')
|
||||
const fs = require('fs')
|
||||
const { stat } = fs.promises || { stat: util.promisify(fs.stat) }
|
||||
|
||||
async function isNodeGypPackage (path) {
|
||||
return await stat(`${path}/binding.gyp`)
|
||||
.then(st => st.isFile())
|
||||
.catch(() => false)
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
isNodeGypPackage,
|
||||
defaultGypInstallScript: 'node-gyp rebuild',
|
||||
}
|
48
node_modules/@npmcli/node-gyp/package.json
generated
vendored
Normal file
48
node_modules/@npmcli/node-gyp/package.json
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"name": "@npmcli/node-gyp",
|
||||
"version": "3.0.0",
|
||||
"description": "Tools for dealing with node-gyp packages",
|
||||
"scripts": {
|
||||
"test": "tap",
|
||||
"lint": "eslint \"**/*.js\"",
|
||||
"postlint": "template-oss-check",
|
||||
"template-oss-apply": "template-oss-apply --force",
|
||||
"lintfix": "npm run lint -- --fix",
|
||||
"snap": "tap",
|
||||
"posttest": "npm run lint"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/npm/node-gyp.git"
|
||||
},
|
||||
"keywords": [
|
||||
"npm",
|
||||
"cli",
|
||||
"node-gyp"
|
||||
],
|
||||
"files": [
|
||||
"bin/",
|
||||
"lib/"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"author": "GitHub Inc.",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@npmcli/eslint-config": "^3.0.1",
|
||||
"@npmcli/template-oss": "4.5.1",
|
||||
"tap": "^16.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
||||
},
|
||||
"templateOSS": {
|
||||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
||||
"version": "4.5.1"
|
||||
},
|
||||
"tap": {
|
||||
"nyc-arg": [
|
||||
"--exclude",
|
||||
"tap-snapshots/**"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue