package.json 811 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "author": "Michael Bridgen <mikeb@squaremobius.net>",
  3. "name": "@acuminous/bitsyntax",
  4. "description": "Pattern-matching on byte buffers",
  5. "license": "MIT",
  6. "version": "0.1.2",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/acuminous/bitsyntax-js.git"
  10. },
  11. "main": "./index",
  12. "scripts": {
  13. "test": "make test",
  14. "prepublish": "make all"
  15. },
  16. "engines": {
  17. "node": ">=0.8"
  18. },
  19. "dependencies": {
  20. "buffer-more-ints": "~1.0.0",
  21. "debug": "^4.3.4",
  22. "safe-buffer": "~5.1.2"
  23. },
  24. "devDependencies": {
  25. "pegjs": "^0.7.0",
  26. "zunit": "^3.2.1"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/acuminous/bitsyntax-js/issues"
  30. },
  31. "homepage": "https://github.com/acuminous/bitsyntax-js#readme",
  32. "directories": {
  33. "lib": "lib",
  34. "test": "test"
  35. }
  36. }