package.json 974 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "date-format",
  3. "version": "4.0.10",
  4. "description": "Formatting Date objects as strings since 2013",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib",
  8. "CHANGELOG.md"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/nomiddlename/date-format.git"
  13. },
  14. "engines": {
  15. "node": ">=4.0"
  16. },
  17. "scripts": {
  18. "lint": "eslint lib/* test/*",
  19. "pretest": "eslint lib/* test/*",
  20. "test": "nyc --check-coverage mocha"
  21. },
  22. "keywords": [
  23. "date",
  24. "format",
  25. "string"
  26. ],
  27. "author": "Gareth Jones <gareth.nomiddlename@gmail.com>",
  28. "license": "MIT",
  29. "readmeFilename": "README.md",
  30. "gitHead": "bf59015ab6c9e86454b179374f29debbdb403522",
  31. "devDependencies": {
  32. "eslint": "^8.15.0",
  33. "eslint-plugin-mocha": "^10.0.4",
  34. "mocha": "^10.0.0",
  35. "nyc": "^15.1.0",
  36. "should": "^13.2.3"
  37. },
  38. "nyc": {
  39. "include": [
  40. "lib/**"
  41. ],
  42. "branches": 100,
  43. "lines": 100,
  44. "functions": 100
  45. }
  46. }