package.json 963 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "author": "Apache Software Foundation",
  3. "name": "xcode",
  4. "description": "parser for xcodeproj/project.pbxproj files",
  5. "version": "2.1.0",
  6. "main": "index.js",
  7. "repository": {
  8. "url": "https://github.com/apache/cordova-node-xcode.git"
  9. },
  10. "engines": {
  11. "node": ">=6.0.0"
  12. },
  13. "dependencies": {
  14. "simple-plist": "^1.0.0",
  15. "uuid": "^3.3.2"
  16. },
  17. "devDependencies": {
  18. "nodeunit": "^0.11.3",
  19. "pegjs": "^0.10.0"
  20. },
  21. "scripts": {
  22. "pegjs": "node_modules/.bin/pegjs lib/parser/pbxproj.pegjs",
  23. "test": "node_modules/.bin/nodeunit test/parser test"
  24. },
  25. "license": "Apache-2.0",
  26. "contributors": [
  27. {
  28. "name": "Andrew Lunny",
  29. "email": "alunny@gmail.com"
  30. },
  31. {
  32. "name": "Anis Kadri"
  33. },
  34. {
  35. "name": "Mike Reinstein"
  36. },
  37. {
  38. "name": "Filip Maj"
  39. },
  40. {
  41. "name": "Brett Rudd",
  42. "email": "goya@apache.org"
  43. },
  44. {
  45. "name": "Bob Easterday"
  46. }
  47. ]
  48. }