package.json 570 B

1234567891011121314151617181920212223
  1. {
  2. "name" : "mavlink",
  3. "version" : "0.0.1",
  4. "description" : "Implementation of the MAVLink protocol for various platforms and both 0.9 and 1.0 revisions of MAVLink",
  5. "repository": "private",
  6. "dependencies" : {
  7. "underscore" : "",
  8. "winston": "",
  9. "jspack": "0.0.4"
  10. },
  11. "devDependencies" : {
  12. "should" : "",
  13. "mocha" : "",
  14. "sinon" : ""
  15. },
  16. "scripts": {
  17. "preinstall": "rm -rf implementations",
  18. "install": "cd .. && ./gen_js.sh",
  19. "pretest": "npm install",
  20. "test": "mocha test"
  21. }
  22. }