package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "loglevel",
  3. "description": "Minimal lightweight logging for JavaScript, adding reliable log level methods to any available console.log methods",
  4. "version": "1.6.1",
  5. "homepage": "https://github.com/pimterry/loglevel",
  6. "author": {
  7. "name": "Tim Perry",
  8. "email": "pimterry@gmail.com",
  9. "url": "http://tim-perry.co.uk"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/pimterry/loglevel.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/pimterry/loglevel/issues"
  17. },
  18. "license": "MIT",
  19. "main": "lib/loglevel",
  20. "engines": {
  21. "node": ">= 0.6.0"
  22. },
  23. "scripts": {
  24. "test": "grunt test",
  25. "ci": "grunt ci",
  26. "dist": "grunt dist",
  27. "watch": "grunt watch"
  28. },
  29. "dependencies": {},
  30. "devDependencies": {
  31. "grunt": "~0.4.5",
  32. "grunt-cli": "~0.1.13",
  33. "grunt-contrib-clean": "^0.6.0",
  34. "grunt-contrib-concat": "~0.5.0",
  35. "grunt-contrib-connect": "~0.8.0",
  36. "grunt-contrib-jasmine": "~0.5.2",
  37. "grunt-contrib-jshint": "^1.1.0",
  38. "grunt-contrib-qunit": "~0.5.2",
  39. "grunt-contrib-uglify": "~0.5.1",
  40. "grunt-contrib-watch": "~0.6.1",
  41. "grunt-coveralls": "^1.0.0",
  42. "grunt-jasmine-node": "~0.2.1",
  43. "grunt-open": "~0.2.3",
  44. "grunt-preprocess": "^4.0.0",
  45. "grunt-saucelabs": "^8.2.0",
  46. "grunt-template-jasmine-istanbul": "~0.2.5",
  47. "grunt-template-jasmine-requirejs": "~0.1.6",
  48. "qunitjs": "1.14.0"
  49. },
  50. "keywords": [
  51. "log",
  52. "logger",
  53. "logging",
  54. "browser"
  55. ]
  56. }