package.json 899 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "plist",
  3. "description": "Apple's property list parser/builder for Node.js and browsers",
  4. "version": "3.0.6",
  5. "author": "Nathan Rajlich <nathan@tootallnate.net>",
  6. "contributors": [
  7. "Hans Huebner <hans.huebner@gmail.com>",
  8. "Pierre Metrailler",
  9. "Mike Reinstein <reinstein.mike@gmail.com>",
  10. "Vladimir Tsvang",
  11. "Mathieu D'Amours"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/TooTallNate/node-plist.git"
  16. },
  17. "license": "MIT",
  18. "keywords": [
  19. "apple",
  20. "browser",
  21. "mac",
  22. "plist",
  23. "parser",
  24. "xml"
  25. ],
  26. "main": "index.js",
  27. "dependencies": {
  28. "base64-js": "^1.5.1",
  29. "xmlbuilder": "^15.1.1"
  30. },
  31. "devDependencies": {
  32. "browserify": "^17.0.0",
  33. "mocha": "^9.2.2",
  34. "multiline": "^2.0.0",
  35. "zuul": "3.12.0"
  36. },
  37. "scripts": {
  38. "test": "make test"
  39. },
  40. "engines": {
  41. "node": ">=6"
  42. }
  43. }