package.json 764 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "bplist-parser",
  3. "version": "0.3.1",
  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. "eslint": "6.5.x",
  21. "mocha": "6.2.x"
  22. },
  23. "homepage": "https://github.com/nearinfinity/node-bplist-parser",
  24. "bugs": "https://github.com/nearinfinity/node-bplist-parser/issues",
  25. "engines": {
  26. "node": ">= 5.10.0"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/nearinfinity/node-bplist-parser.git"
  31. },
  32. "dependencies": {
  33. "big-integer": "1.6.x"
  34. }
  35. }