package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "semver",
  3. "version": "7.3.7",
  4. "description": "The semantic version parser used by npm.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tap",
  8. "snap": "tap",
  9. "preversion": "npm test",
  10. "postversion": "npm publish",
  11. "postpublish": "git push origin --follow-tags",
  12. "lint": "eslint \"**/*.js\"",
  13. "postlint": "template-oss-check",
  14. "lintfix": "npm run lint -- --fix",
  15. "prepublishOnly": "git push origin --follow-tags",
  16. "posttest": "npm run lint",
  17. "template-oss-apply": "template-oss-apply --force"
  18. },
  19. "devDependencies": {
  20. "@npmcli/eslint-config": "^3.0.1",
  21. "@npmcli/template-oss": "3.3.2",
  22. "tap": "^16.0.0"
  23. },
  24. "license": "ISC",
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/npm/node-semver.git"
  28. },
  29. "bin": {
  30. "semver": "bin/semver.js"
  31. },
  32. "files": [
  33. "bin/",
  34. "classes/",
  35. "functions/",
  36. "internal/",
  37. "ranges/",
  38. "index.js",
  39. "preload.js",
  40. "range.bnf"
  41. ],
  42. "tap": {
  43. "check-coverage": true,
  44. "coverage-map": "map.js"
  45. },
  46. "engines": {
  47. "node": ">=10"
  48. },
  49. "dependencies": {
  50. "lru-cache": "^6.0.0"
  51. },
  52. "author": "GitHub Inc.",
  53. "templateOSS": {
  54. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  55. "version": "3.3.2",
  56. "engines": ">=10",
  57. "ciVersions": [
  58. "10.0.0",
  59. "10.x",
  60. "12.x",
  61. "14.x",
  62. "16.x"
  63. ],
  64. "distPaths": [
  65. "bin/",
  66. "classes/",
  67. "functions/",
  68. "internal/",
  69. "ranges/",
  70. "index.js",
  71. "preload.js",
  72. "range.bnf"
  73. ]
  74. }
  75. }