package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "numbro",
  3. "version": "1.9.3",
  4. "description": "Format and manipulate numbers.",
  5. "homepage": "http://numbrojs.com",
  6. "author": {
  7. "name": "Företagsplatsen AB",
  8. "email": "contact@foretagsplatsen.se",
  9. "url": "http://www.foretagsplatsen.se"
  10. },
  11. "keywords": [
  12. "numeral",
  13. "numbro",
  14. "number",
  15. "format",
  16. "time",
  17. "money",
  18. "percentage"
  19. ],
  20. "main": "./numbro.js",
  21. "typings": "./numbro.d.ts",
  22. "engines": {
  23. "node": "*"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/foretagsplatsen/numbro"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/foretagsplatsen/numbro/issues"
  31. },
  32. "licenses": [
  33. {
  34. "type": "MIT"
  35. }
  36. ],
  37. "devDependencies": {
  38. "grunt": "^1.0.1",
  39. "grunt-bump": "^0.8.0",
  40. "grunt-confirm": "^1.0.5",
  41. "grunt-contrib-concat": "^1.0.1",
  42. "grunt-contrib-copy": "^1.0.0",
  43. "grunt-contrib-jshint": "^1.0.0",
  44. "grunt-contrib-nodeunit": "^1.0.0",
  45. "grunt-contrib-uglify": "^1.0.1",
  46. "grunt-jscs": "^2.8.0",
  47. "grunt-release": "^0.13.1",
  48. "uglify-js": "^2.6.2"
  49. },
  50. "scripts": {
  51. "test": "grunt test"
  52. },
  53. "files": [
  54. "LICENSE",
  55. "LICENSE-Numeraljs",
  56. "CHANGELOG",
  57. "CHANGELOG-Numeraljs.md",
  58. "numbro.js",
  59. "numbro.d.ts",
  60. "languages",
  61. "dist"
  62. ]
  63. }