-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sergio Cinos
committed
Jul 5, 2022
1 parent
643ba24
commit 3ab4c15
Showing
4 changed files
with
866 additions
and
865 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
yarnPath: .yarn/releases/yarn-3.2.0.cjs | ||
|
||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.2.1.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,80 @@ | ||
{ | ||
"name": "yarn-deduplicate", | ||
"version": "5.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 <[email protected]>", | ||
"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": "[email protected]:scinos/yarn-deduplicate.git" | ||
}, | ||
"engines": { | ||
"node": ">=12", | ||
"yarn": ">=3.2.1" | ||
}, | ||
"dependencies": { | ||
"@yarnpkg/lockfile": "^1.1.0", | ||
"commander": "^9.2.0", | ||
"semver": "^7.3.2", | ||
"tslib": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.18.6", | ||
"@babel/preset-env": "^7.18.6", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@release-it/keep-a-changelog": "^2.5.0", | ||
"@tsconfig/node12": "^1.0.11", | ||
"@types/jest": "^28.1.4", | ||
"@types/semver": "^7.3.9", | ||
"@types/yarnpkg__lockfile": "^1.1.5", | ||
"eslint": "^8.19.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-jest": "^26.5.3", | ||
"eslint-plugin-md": "^1.0.19", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^28.1.2", | ||
"outdent": "^0.8.0", | ||
"prettier": "^2.6.2", | ||
"release-it": "^14.14.2", | ||
"typescript": "^4.7.4" | ||
}, | ||
"jest": { | ||
"testMatch": [ | ||
"<rootDir>/tests/*.ts" | ||
] | ||
}, | ||
"packageManager": "[email protected]" | ||
"name": "yarn-deduplicate", | ||
"version": "5.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 <[email protected]>", | ||
"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": "[email protected]:scinos/yarn-deduplicate.git" | ||
}, | ||
"engines": { | ||
"node": ">=12", | ||
"yarn": ">=1" | ||
}, | ||
"dependencies": { | ||
"@yarnpkg/lockfile": "^1.1.0", | ||
"commander": "^9.2.0", | ||
"semver": "^7.3.2", | ||
"tslib": "^2.4.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.18.6", | ||
"@babel/preset-env": "^7.18.6", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@release-it/keep-a-changelog": "^2.5.0", | ||
"@tsconfig/node12": "^1.0.11", | ||
"@types/jest": "^28.1.4", | ||
"@types/semver": "^7.3.9", | ||
"@types/yarnpkg__lockfile": "^1.1.5", | ||
"eslint": "^8.19.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-jest": "^26.5.3", | ||
"eslint-plugin-md": "^1.0.19", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^28.1.2", | ||
"outdent": "^0.8.0", | ||
"prettier": "^2.6.2", | ||
"release-it": "^14.14.2", | ||
"typescript": "^4.7.4" | ||
}, | ||
"jest": { | ||
"testMatch": [ | ||
"<rootDir>/tests/*.ts" | ||
] | ||
}, | ||
"packageManager": "[email protected]" | ||
} |