package.json 842 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "streamsearch",
  3. "version": "1.1.0",
  4. "author": "Brian White <mscdex@mscdex.net>",
  5. "description": "Streaming Boyer-Moore-Horspool searching for node.js",
  6. "main": "./lib/sbmh.js",
  7. "engines": {
  8. "node": ">=10.0.0"
  9. },
  10. "devDependencies": {
  11. "@mscdex/eslint-config": "^1.1.0",
  12. "eslint": "^7.32.0"
  13. },
  14. "scripts": {
  15. "test": "node test/test.js",
  16. "lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js lib test",
  17. "lint:fix": "npm run lint -- --fix"
  18. },
  19. "keywords": [
  20. "stream",
  21. "horspool",
  22. "boyer-moore-horspool",
  23. "boyer-moore",
  24. "search"
  25. ],
  26. "licenses": [{
  27. "type": "MIT",
  28. "url": "http://github.com/mscdex/streamsearch/raw/master/LICENSE"
  29. }],
  30. "repository": {
  31. "type": "git",
  32. "url": "http://github.com/mscdex/streamsearch.git"
  33. }
  34. }