Comparing version 9.6.0 to 9.7.0
{ | ||
"name": "isexe", | ||
"version": "2.0.0", | ||
"version": "3.1.1", | ||
"description": "Minimal module to check if a file is executable.", | ||
"main": "index.js", | ||
"directories": { | ||
"test": "test" | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/mjs/index.js", | ||
"types": "./dist/cjs/index.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/mjs/index.d.ts", | ||
"default": "./dist/mjs/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/index.d.ts", | ||
"default": "./dist/cjs/index.js" | ||
} | ||
}, | ||
"./posix": { | ||
"import": { | ||
"types": "./dist/mjs/posix.d.ts", | ||
"default": "./dist/mjs/posix.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/posix.d.ts", | ||
"default": "./dist/cjs/posix.js" | ||
} | ||
}, | ||
"./win32": { | ||
"import": { | ||
"types": "./dist/mjs/win32.d.ts", | ||
"default": "./dist/mjs/win32.js" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/win32.d.ts", | ||
"default": "./dist/cjs/win32.js" | ||
} | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.4.5", | ||
"@types/tap": "^15.0.8", | ||
"c8": "^8.0.1", | ||
"mkdirp": "^0.5.1", | ||
"prettier": "^2.8.8", | ||
"rimraf": "^2.5.0", | ||
"tap": "^10.3.0" | ||
"sync-content": "^1.0.2", | ||
"tap": "^16.3.8", | ||
"ts-node": "^10.9.1", | ||
"typedoc": "^0.24.8", | ||
"typescript": "^5.1.6" | ||
}, | ||
"scripts": { | ||
"test": "tap test/*.js --100", | ||
"preversion": "npm test", | ||
"postversion": "npm publish", | ||
"postpublish": "git push origin --all; git push origin --tags" | ||
"prepublishOnly": "git push origin --follow-tags", | ||
"prepare": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash ./scripts/fixup.sh", | ||
"pretest": "npm run prepare", | ||
"presnap": "npm run prepare", | ||
"test": "c8 tap", | ||
"snap": "c8 tap", | ||
"format": "prettier --write . --loglevel warn --ignore-path ../../.prettierignore --cache", | ||
"typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts" | ||
}, | ||
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", | ||
"license": "ISC", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/isaacs/isexe.git" | ||
"tap": { | ||
"coverage": false, | ||
"node-arg": [ | ||
"--enable-source-maps", | ||
"--no-warnings", | ||
"--loader", | ||
"ts-node/esm" | ||
], | ||
"ts": false | ||
}, | ||
"keywords": [], | ||
"bugs": { | ||
"url": "https://github.com/isaacs/isexe/issues" | ||
"prettier": { | ||
"semi": false, | ||
"printWidth": 75, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"singleQuote": true, | ||
"jsxSingleQuote": false, | ||
"bracketSameLine": true, | ||
"arrowParens": "avoid", | ||
"endOfLine": "lf" | ||
}, | ||
"homepage": "https://github.com/isaacs/isexe#readme" | ||
"repository": "https://github.com/isaacs/isexe", | ||
"engines": { | ||
"node": ">=16" | ||
} | ||
} |
{ | ||
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)", | ||
"author": "GitHub Inc.", | ||
"name": "which", | ||
"description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", | ||
"version": "2.0.2", | ||
"version": "4.0.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/isaacs/node-which.git" | ||
"url": "https://github.com/npm/node-which.git" | ||
}, | ||
"main": "which.js", | ||
"main": "lib/index.js", | ||
"bin": { | ||
"node-which": "./bin/node-which" | ||
"node-which": "./bin/which.js" | ||
}, | ||
"license": "ISC", | ||
"dependencies": { | ||
"isexe": "^2.0.0" | ||
"isexe": "^3.1.1" | ||
}, | ||
"devDependencies": { | ||
"mkdirp": "^0.5.0", | ||
"rimraf": "^2.6.2", | ||
"tap": "^14.6.9" | ||
"@npmcli/eslint-config": "^4.0.0", | ||
"@npmcli/template-oss": "4.18.0", | ||
"tap": "^16.3.0" | ||
}, | ||
"scripts": { | ||
"test": "tap", | ||
"preversion": "npm test", | ||
"postversion": "npm publish", | ||
"prepublish": "npm run changelog", | ||
"prechangelog": "bash gen-changelog.sh", | ||
"changelog": "git add CHANGELOG.md", | ||
"postchangelog": "git commit -m 'update changelog - '${npm_package_version}", | ||
"postpublish": "git push origin --follow-tags" | ||
"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" | ||
}, | ||
"files": [ | ||
"which.js", | ||
"bin/node-which" | ||
"bin/", | ||
"lib/" | ||
], | ||
"tap": { | ||
"check-coverage": true | ||
"check-coverage": true, | ||
"nyc-arg": [ | ||
"--exclude", | ||
"tap-snapshots/**" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">= 8" | ||
"node": "^16.13.0 || >=18.0.0" | ||
}, | ||
"templateOSS": { | ||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", | ||
"ciVersions": [ | ||
"16.13.0", | ||
"16.x", | ||
"18.0.0", | ||
"18.x" | ||
], | ||
"version": "4.18.0", | ||
"publish": "true" | ||
} | ||
} |
{ | ||
"name": "pnpm", | ||
"description": "Fast, disk space efficient package manager", | ||
"version": "9.6.0", | ||
"version": "9.7.0", | ||
"bin": { | ||
@@ -38,5 +38,7 @@ "pnpm": "bin/pnpm.cjs", | ||
"@pnpm/dependency-path": "workspace:*", | ||
"@pnpm/env.path": "workspace:*", | ||
"@pnpm/error": "workspace:*", | ||
"@pnpm/filter-workspace-packages": "workspace:*", | ||
"@pnpm/find-workspace-dir": "workspace:*", | ||
"@pnpm/lockfile-types": "workspace:*", | ||
"@pnpm/lockfile.types": "workspace:*", | ||
"@pnpm/logger": "catalog:", | ||
@@ -43,0 +45,0 @@ "@pnpm/modules-yaml": "workspace:*", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17683614