Skip to content

Commit

Permalink
deps: minipass@7.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Aug 30, 2023
1 parent ede7f5e commit 2c5542d
Show file tree
Hide file tree
Showing 59 changed files with 7,598 additions and 10,879 deletions.
26 changes: 8 additions & 18 deletions node_modules/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
!/@npmcli/metavuln-calculator/node_modules/
/@npmcli/metavuln-calculator/node_modules/*
!/@npmcli/metavuln-calculator/node_modules/make-fetch-happen
!/@npmcli/metavuln-calculator/node_modules/minipass
!/@npmcli/metavuln-calculator/node_modules/npm-registry-fetch
!/@npmcli/metavuln-calculator/node_modules/pacote
!/@npmcli/name-from-folder
Expand Down Expand Up @@ -68,9 +69,6 @@
!/buffer
!/builtins
!/cacache
!/cacache/node_modules/
/cacache/node_modules/*
!/cacache/node_modules/minipass
!/chalk
!/chownr
!/ci-info
Expand Down Expand Up @@ -110,9 +108,6 @@
!/fastest-levenshtein
!/foreground-child
!/fs-minipass
!/fs-minipass/node_modules/
/fs-minipass/node_modules/*
!/fs-minipass/node_modules/minipass
!/fs.realpath
!/function-bind
!/gauge
Expand Down Expand Up @@ -149,15 +144,15 @@
!/just-diff
!/lru-cache
!/make-fetch-happen
!/make-fetch-happen/node_modules/
/make-fetch-happen/node_modules/*
!/make-fetch-happen/node_modules/minipass
!/minimatch
!/minipass-collect
!/minipass-collect/node_modules/
/minipass-collect/node_modules/*
!/minipass-collect/node_modules/minipass
!/minipass-fetch
!/minipass-fetch/node_modules/
/minipass-fetch/node_modules/*
!/minipass-fetch/node_modules/minipass
!/minipass-flush
!/minipass-flush/node_modules/
/minipass-flush/node_modules/*
Expand Down Expand Up @@ -193,6 +188,7 @@
!/node-gyp/node_modules/glob
!/node-gyp/node_modules/make-fetch-happen
!/node-gyp/node_modules/minimatch
!/node-gyp/node_modules/minipass
!/node-gyp/node_modules/nopt
!/node-gyp/node_modules/npmlog
!/node-gyp/node_modules/readable-stream
Expand All @@ -209,17 +205,11 @@
!/npm-pick-manifest
!/npm-profile
!/npm-registry-fetch
!/npm-registry-fetch/node_modules/
/npm-registry-fetch/node_modules/*
!/npm-registry-fetch/node_modules/minipass
!/npm-user-validate
!/npmlog
!/once
!/p-map
!/pacote
!/pacote/node_modules/
/pacote/node_modules/*
!/pacote/node_modules/minipass
!/parse-conflict-json
!/path-is-absolute
!/path-key
Expand Down Expand Up @@ -262,6 +252,7 @@
!/sigstore/node_modules/
/sigstore/node_modules/*
!/sigstore/node_modules/make-fetch-happen
!/sigstore/node_modules/minipass
!/smart-buffer
!/socks-proxy-agent
!/socks
Expand All @@ -270,9 +261,6 @@
!/spdx-expression-parse
!/spdx-license-ids
!/ssri
!/ssri/node_modules/
/ssri/node_modules/*
!/ssri/node_modules/minipass
!/string_decoder
!/string-width-cjs
!/string-width
Expand All @@ -286,13 +274,15 @@
!/tar/node_modules/fs-minipass/node_modules/
/tar/node_modules/fs-minipass/node_modules/*
!/tar/node_modules/fs-minipass/node_modules/minipass
!/tar/node_modules/minipass
!/text-table
!/tiny-relative-date
!/treeverse
!/tuf-js
!/tuf-js/node_modules/
/tuf-js/node_modules/*
!/tuf-js/node_modules/make-fetch-happen
!/tuf-js/node_modules/minipass
!/unique-filename
!/unique-slug
!/util-deprecate
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"name": "minipass",
"version": "5.0.0",
"description": "minimal implementation of a PassThrough stream",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.mjs"
},
"require": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./package.json": "./package.json"
},
"devDependencies": {
"@types/node": "^17.0.41",
"end-of-stream": "^1.4.0",
"node-abort-controller": "^3.1.1",
"prettier": "^2.6.2",
"tap": "^16.2.0",
"through2": "^2.0.3",
"ts-node": "^10.8.1",
"typedoc": "^0.23.24",
"typescript": "^4.7.3"
},
"scripts": {
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"prepare": "node ./scripts/transpile-to-esm.js",
"snap": "tap",
"test": "tap",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags",
"typedoc": "typedoc ./index.d.ts",
"format": "prettier --write . --loglevel warn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/minipass.git"
},
"keywords": [
"passthrough",
"stream"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"files": [
"index.d.ts",
"index.js",
"index.mjs"
],
"tap": {
"check-coverage": true
},
"engines": {
"node": ">=8"
},
"prettier": {
"semi": false,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
}
82 changes: 0 additions & 82 deletions node_modules/cacache/node_modules/minipass/package.json

This file was deleted.

Loading

0 comments on commit 2c5542d

Please sign in to comment.