Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -738,11 +738,9 @@ graph LR;
string-width-->strip-ansi;
strip-ansi-->ansi-regex;
tar-->chownr;
tar-->fs-minipass;
tar-->isaacs-fs-minipass["@isaacs/fs-minipass"];
tar-->minipass;
tar-->minizlib;
tar-->mkdirp;
tar-->yallist;
tinyglobby-->fdir;
tinyglobby-->picomatch;
Expand Down
22 changes: 1 addition & 21 deletions node_modules/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@
!/minipass-sized/node_modules/minipass
!/minipass
!/minizlib
!/mkdirp
!/ms
!/mute-stream
!/negotiator
Expand All @@ -138,15 +137,12 @@
/node-gyp/node_modules/@npmcli/*
!/node-gyp/node_modules/@npmcli/agent
!/node-gyp/node_modules/cacache
!/node-gyp/node_modules/chownr
!/node-gyp/node_modules/glob
!/node-gyp/node_modules/jackspeak
!/node-gyp/node_modules/lru-cache
!/node-gyp/node_modules/make-fetch-happen
!/node-gyp/node_modules/minimatch
!/node-gyp/node_modules/path-scurry
!/node-gyp/node_modules/tar
!/node-gyp/node_modules/yallist
!/nopt
!/normalize-package-data
!/npm-audit-report
Expand All @@ -162,11 +158,6 @@
!/p-map
!/package-json-from-dist
!/pacote
!/pacote/node_modules/
/pacote/node_modules/*
!/pacote/node_modules/chownr
!/pacote/node_modules/tar
!/pacote/node_modules/yallist
!/parse-conflict-json
!/path-key
!/path-scurry
Expand Down Expand Up @@ -206,18 +197,7 @@
!/tar
!/tar/node_modules/
/tar/node_modules/*
!/tar/node_modules/fs-minipass
!/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/fs-minipass/node_modules/yallist
!/tar/node_modules/minipass
!/tar/node_modules/minizlib
!/tar/node_modules/minizlib/node_modules/
/tar/node_modules/minizlib/node_modules/*
!/tar/node_modules/minizlib/node_modules/minipass
!/tar/node_modules/minizlib/node_modules/yallist
!/tar/node_modules/mkdirp
!/tar/node_modules/yallist
!/text-table
!/tiny-relative-date
!/tinyglobby
Expand Down
15 changes: 0 additions & 15 deletions node_modules/chownr/LICENSE

This file was deleted.

167 changes: 0 additions & 167 deletions node_modules/chownr/chownr.js

This file was deleted.

61 changes: 49 additions & 12 deletions node_modules/chownr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,68 @@
"author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me/)",
"name": "chownr",
"description": "like `chown -R`",
"version": "2.0.0",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/chownr.git"
},
"main": "chownr.js",
"files": [
"chownr.js"
"dist"
],
"devDependencies": {
"mkdirp": "0.3",
"rimraf": "^2.7.1",
"tap": "^14.10.6"
},
"tap": {
"check-coverage": true
"@types/node": "^20.12.5",
"mkdirp": "^3.0.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tap": "^18.7.2",
"tshy": "^1.13.1",
"typedoc": "^0.25.12"
},
"scripts": {
"prepare": "tshy",
"pretest": "npm run prepare",
"test": "tap",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags"
"prepublishOnly": "git push origin --follow-tags",
"format": "prettier --write . --loglevel warn",
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
},
"license": "ISC",
"license": "BlueOak-1.0.0",
"engines": {
"node": ">=10"
"node": ">=18"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"type": "module",
"prettier": {
"semi": false,
"printWidth": 75,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
}
Loading
Loading