package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "abbrev",
  3. "version": "3.0.1",
  4. "description": "Like ruby's abbrev module, but in js",
  5. "author": "GitHub Inc.",
  6. "main": "lib/index.js",
  7. "scripts": {
  8. "test": "tap",
  9. "lint": "npm run eslint",
  10. "postlint": "template-oss-check",
  11. "template-oss-apply": "template-oss-apply --force",
  12. "lintfix": "npm run eslint -- --fix",
  13. "snap": "tap",
  14. "posttest": "npm run lint",
  15. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/npm/abbrev-js.git"
  20. },
  21. "license": "ISC",
  22. "devDependencies": {
  23. "@npmcli/eslint-config": "^5.0.0",
  24. "@npmcli/template-oss": "4.24.3",
  25. "tap": "^16.3.0"
  26. },
  27. "tap": {
  28. "nyc-arg": [
  29. "--exclude",
  30. "tap-snapshots/**"
  31. ]
  32. },
  33. "files": [
  34. "bin/",
  35. "lib/"
  36. ],
  37. "engines": {
  38. "node": "^18.17.0 || >=20.5.0"
  39. },
  40. "templateOSS": {
  41. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  42. "version": "4.24.3",
  43. "publish": true
  44. }
  45. }