package.json 594 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "w3c-hr-time",
  3. "version": "1.0.2",
  4. "description": "An implementation of the W3C High Resolution Time Level 2 specification.",
  5. "main": "index.js",
  6. "repository": "https://github.com/jsdom/w3c-hr-time",
  7. "author": "Timothy Gu <timothygu99@gmail.com>",
  8. "license": "MIT",
  9. "private": false,
  10. "dependencies": {
  11. "browser-process-hrtime": "^1.0.0"
  12. },
  13. "devDependencies": {
  14. "eslint": "^4.14.0",
  15. "eslint-plugin-jest": "^21.5.0",
  16. "jest": "^24.1.0"
  17. },
  18. "scripts": {
  19. "test": "jest",
  20. "lint": "eslint ."
  21. },
  22. "files": [
  23. "lib",
  24. "index.js"
  25. ]
  26. }