mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-26 07:48:42 -05:00
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "@pnpm/outdated",
|
|
"version": "10.0.15",
|
|
"description": "Check for outdated packages",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"engines": {
|
|
"node": ">=14.6"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"scripts": {
|
|
"test": "pnpm run compile && pnpm run _test",
|
|
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"registry-mock": "registry-mock",
|
|
"test:jest": "jest",
|
|
"_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7771 pnpm run test:e2e",
|
|
"test:e2e": "registry-mock prepare && run-p -r registry-mock test:jest",
|
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/outdated",
|
|
"keywords": [
|
|
"pnpm7",
|
|
"pnpm",
|
|
"outdated"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/outdated#readme",
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@pnpm/client": "workspace:*",
|
|
"@pnpm/constants": "workspace:*",
|
|
"@pnpm/error": "workspace:*",
|
|
"@pnpm/lockfile-file": "workspace:*",
|
|
"@pnpm/lockfile-utils": "workspace:*",
|
|
"@pnpm/manifest-utils": "workspace:*",
|
|
"@pnpm/matcher": "workspace:*",
|
|
"@pnpm/modules-yaml": "workspace:*",
|
|
"@pnpm/pick-registry-for-package": "workspace:*",
|
|
"@pnpm/types": "workspace:*",
|
|
"dependency-path": "workspace:*",
|
|
"ramda": "^0.28.0",
|
|
"semver": "^7.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/logger": "^4.0.0",
|
|
"@pnpm/outdated": "workspace:*",
|
|
"@types/ramda": "0.28.14",
|
|
"@types/semver": "^7.3.10",
|
|
"npm-run-all": "^4.1.5"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|