package.json 582 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "pretty-hrtime",
  3. "description": "process.hrtime() to words",
  4. "version": "1.0.3",
  5. "homepage": "https://github.com/robrich/pretty-hrtime",
  6. "repository": "git://github.com/robrich/pretty-hrtime.git",
  7. "author": "Rob Richardson (http://robrich.org/)",
  8. "main": "./index.js",
  9. "keywords": [
  10. "hrtime",
  11. "benchmark"
  12. ],
  13. "devDependencies": {
  14. "jshint": "^2.9.4",
  15. "mocha": "^3.1.2",
  16. "should": "^11.1.1"
  17. },
  18. "scripts": {
  19. "test": "mocha && jshint ."
  20. },
  21. "engines": {
  22. "node": ">= 0.8"
  23. },
  24. "license": "MIT"
  25. }