package.json 605 B

1234567891011121314151617181920
  1. {
  2. "name": "timespan",
  3. "description": "A JavaScript TimeSpan library for node.js (and soon the browser)",
  4. "version": "2.3.0",
  5. "author": "Michael Stum <blog@stum.de>",
  6. "contributors": [
  7. { "name": "Charlie Robbins", "email": "charlie.robbins@gmail.com" }
  8. ],
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/indexzero/TimeSpan.js.git"
  12. },
  13. "keywords": ["time", "dates", "utilities", "timespan"],
  14. "devDependencies": {
  15. "vows": ">= 0.7.0"
  16. },
  17. "main": "./lib/time-span.js",
  18. "scripts": { "test": "vows test/*-test.js --spec" },
  19. "engines": { "node": ">= 0.2.0" }
  20. }