package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "npm-pick-manifest",
  3. "version": "10.0.0",
  4. "description": "Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.",
  5. "main": "./lib",
  6. "files": [
  7. "bin/",
  8. "lib/"
  9. ],
  10. "scripts": {
  11. "coverage": "tap",
  12. "lint": "npm run eslint",
  13. "test": "tap",
  14. "posttest": "npm run lint",
  15. "postlint": "template-oss-check",
  16. "lintfix": "npm run eslint -- --fix",
  17. "snap": "tap",
  18. "template-oss-apply": "template-oss-apply --force",
  19. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/npm/npm-pick-manifest.git"
  24. },
  25. "keywords": [
  26. "npm",
  27. "semver",
  28. "package manager"
  29. ],
  30. "author": "GitHub Inc.",
  31. "license": "ISC",
  32. "dependencies": {
  33. "npm-install-checks": "^7.1.0",
  34. "npm-normalize-package-bin": "^4.0.0",
  35. "npm-package-arg": "^12.0.0",
  36. "semver": "^7.3.5"
  37. },
  38. "devDependencies": {
  39. "@npmcli/eslint-config": "^5.0.0",
  40. "@npmcli/template-oss": "4.23.3",
  41. "tap": "^16.0.1"
  42. },
  43. "tap": {
  44. "check-coverage": true,
  45. "nyc-arg": [
  46. "--exclude",
  47. "tap-snapshots/**"
  48. ]
  49. },
  50. "engines": {
  51. "node": "^18.17.0 || >=20.5.0"
  52. },
  53. "templateOSS": {
  54. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  55. "version": "4.23.3",
  56. "publish": true
  57. }
  58. }