package.json 744 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "bplist-parser",
  3. "version": "0.2.0",
  4. "description": "Binary plist parser.",
  5. "main": "bplistParser.js",
  6. "scripts": {
  7. "test": "mocha test"
  8. },
  9. "keywords": [
  10. "bplist",
  11. "plist",
  12. "parser"
  13. ],
  14. "author": "Joe Ferner <joe.ferner@nearinfinity.com>",
  15. "contributors": [
  16. "Brett Zamir"
  17. ],
  18. "license": "MIT",
  19. "devDependencies": {
  20. "mocha": "^6.1.4"
  21. },
  22. "homepage": "https://github.com/nearinfinity/node-bplist-parser",
  23. "bugs": "https://github.com/nearinfinity/node-bplist-parser/issues",
  24. "engines": {
  25. "node": ">= 5.10.0"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/nearinfinity/node-bplist-parser.git"
  30. },
  31. "dependencies": {
  32. "big-integer": "^1.6.44"
  33. }
  34. }