package.json 1005 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "zsnapper",
  3. "description": "A ZFS snapshot service",
  4. "author": "Jakob Borg <jakob@nym.se> (http://nym.se/)",
  5. "keywords": ["solaris", "zfs", "illumos", "openindiana", "smartos"],
  6. "homepage": "http://nym.se/zsnapper/docs/",
  7. "version": "0.0.1",
  8. "bin": "./zsnapper",
  9. "scripts": {
  10. "test": "NODE_PATH=lib PATH=test:$PATH node_modules/.bin/mocha -R spec",
  11. "hint": "jshint *.js lib/*.js",
  12. "doc": "docco lib/* example.js 2>/dev/null",
  13. "cov": "jscoverage lib lib-cov && EXPRESS_COV=1 NODE_PATH=lib-cov mocha -R html-cov > docs/coverage.html"
  14. },
  15. "dependencies": {
  16. "async": "0.1.x",
  17. "cron": "https://github.com/calmh/node-cron/tarball/master",
  18. "underscore": "1.3.x",
  19. "zfs": "*"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/calmh/zsnapper.git"
  24. },
  25. "bugs": {
  26. "url": "http://github.com/calmh/zsnapper/issues",
  27. "email": "zsnapper@nym.se"
  28. }
  29. }