package.json 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "abbrev",
  3. "version": "2.0.0",
  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": "eslint \"**/*.js\"",
  10. "postlint": "template-oss-check",
  11. "template-oss-apply": "template-oss-apply --force",
  12. "lintfix": "npm run lint -- --fix",
  13. "snap": "tap",
  14. "posttest": "npm run lint"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/npm/abbrev-js.git"
  19. },
  20. "license": "ISC",
  21. "devDependencies": {
  22. "@npmcli/eslint-config": "^4.0.0",
  23. "@npmcli/template-oss": "4.8.0",
  24. "tap": "^16.3.0"
  25. },
  26. "tap": {
  27. "nyc-arg": [
  28. "--exclude",
  29. "tap-snapshots/**"
  30. ]
  31. },
  32. "files": [
  33. "bin/",
  34. "lib/"
  35. ],
  36. "engines": {
  37. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  38. },
  39. "templateOSS": {
  40. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  41. "version": "4.8.0"
  42. }
  43. }