Files
pnpm/packages/outdated/package.json
2022-05-01 01:35:26 +03:00

65 lines
1.8 KiB
JSON

{
"name": "@pnpm/outdated",
"version": "10.0.2",
"description": "Check for outdated packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=14.19"
},
"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:7.1.1",
"@pnpm/constants": "workspace:6.1.0",
"@pnpm/error": "workspace:3.0.1",
"@pnpm/lockfile-file": "workspace:5.0.2",
"@pnpm/lockfile-utils": "workspace:4.0.2",
"@pnpm/manifest-utils": "workspace:3.0.2",
"@pnpm/matcher": "workspace:3.0.0",
"@pnpm/modules-yaml": "workspace:10.0.1",
"@pnpm/pick-registry-for-package": "workspace:3.0.1",
"@pnpm/types": "workspace:8.0.1",
"dependency-path": "workspace:9.1.1",
"ramda": "^0.27.1",
"semver": "^7.3.4"
},
"devDependencies": {
"@pnpm/logger": "^4.0.0",
"@pnpm/outdated": "workspace:10.0.2",
"@types/ramda": "0.27.39",
"@types/semver": "^7.3.4",
"npm-run-all": "^4.1.5"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}