package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "filesize",
  3. "description": "JavaScript library to generate a human readable String describing the file size",
  4. "version": "3.6.1",
  5. "homepage": "https://filesizejs.com",
  6. "author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/avoidwork/filesize.js.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/avoidwork/filesize.js/issues"
  13. },
  14. "license": "BSD-3-Clause",
  15. "main": "lib/filesize",
  16. "engines": {
  17. "node": ">= 0.4.0"
  18. },
  19. "scripts": {
  20. "test": "grunt test"
  21. },
  22. "devDependencies": {
  23. "babel-core": "^6.26.0",
  24. "babel-preset-env": "^1.6.1",
  25. "babel-minify": "^0.3.0",
  26. "grunt": "^1.0.1",
  27. "grunt-babel": "^7.0.0",
  28. "grunt-cli": "^1.2.0",
  29. "grunt-contrib-concat": "^1.0.1",
  30. "grunt-contrib-nodeunit": "^1.0.0",
  31. "grunt-contrib-uglify": "^3.3.0",
  32. "grunt-contrib-watch": "^1.0.0",
  33. "grunt-eslint": "^20.1.0"
  34. },
  35. "keywords": [
  36. "file",
  37. "filesize",
  38. "size",
  39. "readable",
  40. "file system",
  41. "bytes",
  42. "diff"
  43. ]
  44. }