Useful methods for date/time management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
909 B

  1. {
  2. "version": "1.0.2",
  3. "license": "MIT",
  4. "main": "dist/index.js",
  5. "typings": "dist/index.d.ts",
  6. "files": [
  7. "dist",
  8. "src"
  9. ],
  10. "engines": {
  11. "node": ">=10"
  12. },
  13. "scripts": {
  14. "start": "tsdx watch",
  15. "build": "tsdx build",
  16. "test": "tsdx test",
  17. "lint": "tsdx lint",
  18. "prepare": "tsdx build"
  19. },
  20. "peerDependencies": {
  21. "date-fns": "^2.16.1"
  22. },
  23. "husky": {
  24. "hooks": {
  25. "pre-commit": "tsdx lint"
  26. }
  27. },
  28. "name": "@theoryofnekomata/datetime-commons",
  29. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  30. "repository": {
  31. "type": "git",
  32. "url":"https://code.modal.sh/TheoryOfNekomata/datetime-commons.git"
  33. },
  34. "module": "dist/datetime-commons.esm.js",
  35. "devDependencies": {
  36. "date-fns": "^2.16.1",
  37. "fast-check": "^2.3.0",
  38. "husky": "^4.3.0",
  39. "tsdx": "^0.13.3",
  40. "tslib": "^2.0.1",
  41. "typescript": "^4.0.2"
  42. }
  43. }