package.json 951 B

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