package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "npm-install-checks",
  3. "version": "7.1.1",
  4. "description": "Check the engines and platform fields in package.json",
  5. "main": "lib/index.js",
  6. "dependencies": {
  7. "semver": "^7.1.1"
  8. },
  9. "devDependencies": {
  10. "@npmcli/eslint-config": "^5.0.0",
  11. "@npmcli/template-oss": "4.23.4",
  12. "tap": "^16.0.1"
  13. },
  14. "scripts": {
  15. "test": "tap",
  16. "lint": "npm run eslint",
  17. "postlint": "template-oss-check",
  18. "template-oss-apply": "template-oss-apply --force",
  19. "lintfix": "npm run eslint -- --fix",
  20. "snap": "tap",
  21. "posttest": "npm run lint",
  22. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/npm/npm-install-checks.git"
  27. },
  28. "keywords": [
  29. "npm,",
  30. "install"
  31. ],
  32. "license": "BSD-2-Clause",
  33. "files": [
  34. "bin/",
  35. "lib/"
  36. ],
  37. "engines": {
  38. "node": "^18.17.0 || >=20.5.0"
  39. },
  40. "author": "GitHub Inc.",
  41. "templateOSS": {
  42. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  43. "version": "4.23.4",
  44. "publish": "true"
  45. },
  46. "tap": {
  47. "nyc-arg": [
  48. "--exclude",
  49. "tap-snapshots/**"
  50. ]
  51. }
  52. }