You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 936B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "plist",
  3. "description": "Apple's property list parser/builder for Node.js and browsers",
  4. "version": "3.1.0",
  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. "@xmldom/xmldom": "^0.8.8",
  29. "base64-js": "^1.5.1",
  30. "xmlbuilder": "^15.1.1"
  31. },
  32. "devDependencies": {
  33. "browserify": "^17.0.0",
  34. "mocha": "^9.2.2",
  35. "multiline": "^2.0.0",
  36. "zuul": "3.12.0"
  37. },
  38. "scripts": {
  39. "test": "make test"
  40. },
  41. "engines": {
  42. "node": ">=10.4.0"
  43. }
  44. }