1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 04:10:04 +02:00

update packages to latest version

This commit is contained in:
s2
2022-08-20 18:51:33 +02:00
parent 09663a35a5
commit 806ebf9a57
4513 changed files with 366205 additions and 92512 deletions

View File

@@ -0,0 +1,4 @@
require('child_process').exec('array-bin', { env: process.env },
function (err) {
if (err && err.code) throw new Error('exited badly with code = ' + err.code)
})

View File

@@ -0,0 +1,5 @@
var assert = require("assert")
assert.equal(undefined, process.env.npm_config__password, "password exposed!")
assert.equal(undefined, process.env.npm_config__auth, "auth exposed!")
assert.equal(undefined, process.env.npm_config__authCrypt, "authCrypt exposed!")

View File

@@ -0,0 +1,5 @@
var assert = require("assert")
assert.equal(undefined, process.env.npm_config__password, "password exposed!")
assert.equal(undefined, process.env.npm_config__auth, "auth exposed!")
assert.equal(undefined, process.env.npm_config__authCrypt, "authCrypt exposed!")

View File

@@ -0,0 +1,29 @@
{
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
"name": "minimatch",
"description": "a glob matcher in javascript",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/minimatch.git"
},
"main": "minimatch.js",
"scripts": {
"test": "tap test"
},
"engines": {
"node": "*"
},
"dependencies": {
"lru-cache": "~1.0.5"
},
"devDependencies": {
"tap": "~0.1.3"
},
"licenses" : [
{
"type" : "MIT",
"url" : "http://github.com/isaacs/minimatch/raw/master/LICENSE"
}
]
}

View File

@@ -0,0 +1,4 @@
var a = require("./node_modules/glob/node_modules/minimatch/package.json")
var e = require("./minimatch-expected.json")
var assert = require("assert")
assert.deepEqual(a, e, "didn't get expected minimatch/package.json")

View File

@@ -0,0 +1,4 @@
require('child_process').exec('dir-bin', { stdio: 'pipe',
env: process.env }, function (err) {
if (err && err.code) throw new Error('exited badly with code = ' + err.code)
})

View File

@@ -0,0 +1,2 @@
fs = require('fs')
fs.statSync(__dirname + '/lib/node_modules/foo')

View File

@@ -0,0 +1,5 @@
var assert = require("assert")
assert.equal(undefined, process.env.npm_config__password, "password exposed!")
assert.equal(undefined, process.env.npm_config__auth, "auth exposed!")
assert.equal(undefined, process.env.npm_config__authCrypt, "authCrypt exposed!")

View File

@@ -0,0 +1,9 @@
var fs = require("fs")
var assert = require("assert")
var path = require("path")
// sax should be the only dep that ends up installed
var dir = path.resolve(__dirname, "node_modules")
assert.deepEqual(fs.readdirSync(dir), ["sax"])
assert.equal(require("sax/package.json").version, "0.3.5")

View File

@@ -0,0 +1,48 @@
{
"name": "npm-test-shrinkwrap",
"version": "0.0.0",
"dependencies": {
"npm-test-single-file": {
"version": "1.2.3",
"resolved": "https://gist.github.com/isaacs/1837112/raw/9ef57a59fc22aeb1d1ca346b68826dcb638b8416/index.js"
},
"glob": {
"version": "3.1.5",
"resolved": "git://github.com/isaacs/node-glob.git#67bda227fd7a559cca5620307c7d30a6732a792f",
"dependencies": {
"minimatch": {
"version": "0.2.1",
"dependencies": {
"lru-cache": {
"version": "1.0.5"
}
}
},
"graceful-fs": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.5.tgz",
"dependencies": {
"fast-list": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/fast-list/-/fast-list-1.0.2.tgz"
}
}
},
"inherits": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz"
}
}
},
"minimatch": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz",
"dependencies": {
"lru-cache": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.5.tgz"
}
}
}
}
}