Socket
Socket
Sign inDemoInstall

yarn-deduplicate

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yarn-deduplicate - npm Package Compare versions

Comparing version 5.0.2 to 6.0.0

24

CHANGELOG.md

@@ -10,2 +10,23 @@ # Changelog

## [6.0.0] - 2022-08-29
### Breaking changes
- Drop support for Node 12.x. Minimum supported version is 14.x
- Drop support for Yarn >= 2. It was never supported because it just doesn't work, but now Yarn
version is enforced in `engines` entry in `package.json`
### Chores
- Do not pack Yarn version, rely on `corepack` instead
- Enable corepack on CI
- Update dependency @babel/core to ^7.18.13 (#175)
- Update dependency @types/jest to ^28.1.8 (#174)
- Update dependency eslint to ^8.23.0 (#180)
- Update dependency eslint-plugin-jest to v27 (#183)
- Update dependency jest to v29 (#178)
- Update dependency release-it to ^15.4.0 (#176)
- Update dependency typescript to ^4.8.2 (#179)
- Update Yarn to v3.2.3 (#177)
## [5.0.2] - 2022-08-15

@@ -251,5 +272,6 @@

[unreleased]: https://github.com/scinos/yarn-deduplicate/compare/v5.0.2...HEAD
[unreleased]: https://github.com/scinos/yarn-deduplicate/compare/v6.0.0...HEAD
[6.0.0]: https://github.com/scinos/yarn-deduplicate/compare/v5.0.2...v6.0.0
[5.0.2]: https://github.com/scinos/yarn-deduplicate/compare/v5.0.1...v5.0.2
[5.0.1]: https://github.com/scinos/yarn-deduplicate/compare/v5.0.0...v5.0.1
[5.0.0]: https://github.com/scinos/yarn-deduplicate/compare/v4.0.0...v5.0.0

156

package.json
{
"name": "yarn-deduplicate",
"version": "5.0.2",
"bin": "./dist/cli.js",
"description": "Deduplication tool for yarn.lock files",
"keywords": [
"yarn",
"yarn.lock",
"lockfile",
"duplicated",
"package manager",
"dedupe",
"deduplicate"
],
"scripts": {
"clean": "yarn tsc --build --clean",
"test": "yarn build && jest",
"lint": "eslint .",
"typecheck": "yarn tsc --build tsconfig.json --force && yarn tsc --build tests/tsconfig.json --force",
"validate": "yarn test && yarn lint && yarn typecheck",
"prepack": "yarn build",
"build": "yarn clean && yarn tsc --build",
"release": "release-it"
},
"homepage": "https://github.com/scinos/yarn-deduplicate#readme",
"bugs": "https://github.com/scinos/yarn-deduplicate/issues",
"license": "Apache-2.0",
"author": "Sergio Cinos <sergio.cinos@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"AUTHORS.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"LICENSE.txt",
"README.md",
"dist/*",
"!dist/tsconfig.tsbuildinfo"
],
"repository": {
"type": "git",
"url": "git@github.com:scinos/yarn-deduplicate.git"
},
"engines": {
"node": ">=12",
"yarn": ">=1"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"commander": "^9.4.0",
"semver": "^7.3.7",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@release-it/keep-a-changelog": "^3.1.0",
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^28.1.6",
"@types/semver": "^7.3.12",
"@types/yarnpkg__lockfile": "^1.1.5",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.8.2",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"outdent": "^0.8.0",
"prettier": "^2.7.1",
"release-it": "^15.3.0",
"typescript": "^4.7.4"
},
"jest": {
"testMatch": [
"<rootDir>/tests/*.ts"
]
},
"packageManager": "yarn@3.2.2"
"name": "yarn-deduplicate",
"version": "6.0.0",
"bin": "./dist/cli.js",
"description": "Deduplication tool for yarn.lock files",
"keywords": [
"yarn",
"yarn.lock",
"lockfile",
"duplicated",
"package manager",
"dedupe",
"deduplicate"
],
"scripts": {
"clean": "yarn tsc --build --clean",
"test": "yarn build && jest",
"lint": "eslint .",
"typecheck": "yarn tsc --build tsconfig.json --force && yarn tsc --build tests/tsconfig.json --force",
"validate": "yarn test && yarn lint && yarn typecheck",
"prepack": "yarn build",
"build": "yarn clean && yarn tsc --build",
"release": "release-it"
},
"homepage": "https://github.com/scinos/yarn-deduplicate#readme",
"bugs": "https://github.com/scinos/yarn-deduplicate/issues",
"license": "Apache-2.0",
"author": "Sergio Cinos <sergio.cinos@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"AUTHORS.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"LICENSE.txt",
"README.md",
"dist/*",
"!dist/tsconfig.tsbuildinfo"
],
"repository": {
"type": "git",
"url": "git@github.com:scinos/yarn-deduplicate.git"
},
"engines": {
"node": ">=14",
"yarn": ">=1 <2"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"commander": "^9.4.0",
"semver": "^7.3.7",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@release-it/keep-a-changelog": "^3.1.0",
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^28.1.8",
"@types/semver": "^7.3.12",
"@types/yarnpkg__lockfile": "^1.1.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.1",
"outdent": "^0.8.0",
"prettier": "^2.7.1",
"release-it": "^15.4.0",
"typescript": "^4.8.2"
},
"jest": {
"testMatch": [
"<rootDir>/tests/*.ts"
]
},
"packageManager": "yarn@3.2.3"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc