package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "dateformat",
  3. "description": "A node.js package for Steven Levithan's excellent dateFormat() function.",
  4. "maintainers": [
  5. "Felix Geisendörfer <felix@debuggable.com>"
  6. ],
  7. "homepage": "https://github.com/felixge/node-dateformat",
  8. "author": "Steven Levithan",
  9. "contributors": [
  10. "Steven Levithan",
  11. "Felix Geisendörfer <felix@debuggable.com>",
  12. "Christoph Tavan <dev@tavan.de>",
  13. "Jon Schlinkert (https://github.com/jonschlinkert)"
  14. ],
  15. "version": "4.6.3",
  16. "license": "MIT",
  17. "main": "lib/dateformat",
  18. "devDependencies": {
  19. "@babel/cli": "^7.12.10",
  20. "@babel/core": "^7.12.10",
  21. "@babel/preset-env": "^7.12.11",
  22. "mocha": "^8.2.1",
  23. "uglify-js": "^3.12.5"
  24. },
  25. "engines": {
  26. "node": "*"
  27. },
  28. "scripts": {
  29. "build": "./node_modules/.bin/babel src --out-dir lib && uglifyjs lib/dateformat.js -o lib/dateformat.js",
  30. "test": "npm run build && mocha",
  31. "benchmark": "npm run build && node ./benchmark/benchmark.js"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/felixge/node-dateformat.git"
  36. },
  37. "dependencies": {}
  38. }