package.json 652 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "npm-install-checks",
  3. "version": "4.0.0",
  4. "description": "Check the engines and platform fields in package.json",
  5. "main": "index.js",
  6. "dependencies": {
  7. "semver": "^7.1.1"
  8. },
  9. "devDependencies": {
  10. "tap": "^14.10.6"
  11. },
  12. "scripts": {
  13. "test": "tap",
  14. "preversion": "npm test",
  15. "postversion": "npm publish",
  16. "postpublish": "git push origin --follow-tags"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/npm/npm-install-checks.git"
  21. },
  22. "keywords": [
  23. "npm,",
  24. "install"
  25. ],
  26. "license": "BSD-2-Clause",
  27. "files": [
  28. "index.js"
  29. ],
  30. "engines": {
  31. "node": ">=10"
  32. }
  33. }