package.json 608 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "bplist-creator",
  3. "version": "0.1.0",
  4. "description": "Binary Mac OS X Plist (property list) creator.",
  5. "main": "bplistCreator.js",
  6. "scripts": {
  7. "test": "./node_modules/nodeunit/bin/nodeunit test"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/nearinfinity/node-bplist-creator.git"
  12. },
  13. "keywords": [
  14. "bplist",
  15. "plist",
  16. "creator"
  17. ],
  18. "author": "Joe Ferner",
  19. "license": "MIT",
  20. "devDependencies": {
  21. "bplist-parser": "0.3.0",
  22. "is-buffer": "1.1.x",
  23. "nodeunit": "0.9.x"
  24. },
  25. "dependencies": {
  26. "stream-buffers": "2.2.x"
  27. }
  28. }