package.json 713 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "isoformat",
  3. "version": "0.2.1",
  4. "description": "A tidy ISO 8601 date formatter and parser",
  5. "homepage": "https://github.com/mbostock/isoformat/",
  6. "license": "ISC",
  7. "author": {
  8. "name": "Mike Bostock",
  9. "url": "https://bost.ocks.org/mike"
  10. },
  11. "type": "module",
  12. "main": "src/index.js",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/mbostock/isoformat.git"
  16. },
  17. "files": [
  18. "src/**/*.js"
  19. ],
  20. "scripts": {
  21. "test": "mocha test/**/*-test.js && eslint src test",
  22. "prepublishOnly": "yarn test",
  23. "postpublish": "git push && git push --tags"
  24. },
  25. "sideEffects": false,
  26. "devDependencies": {
  27. "eslint": "^7.32.0",
  28. "mocha": "^9.1.1"
  29. }
  30. }