package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.9.2",
  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. "funding": {
  19. "type": "tidelift",
  20. "url": "https://tidelift.com/funding/github/npm/loglevel"
  21. },
  22. "license": "MIT",
  23. "main": "lib/loglevel.js",
  24. "types": "./index.d.ts",
  25. "engines": {
  26. "node": ">= 0.6.0"
  27. },
  28. "scripts": {
  29. "lint": "grunt jshint",
  30. "test": "grunt test && npm run test-types",
  31. "test-browser": "grunt test-browser",
  32. "test-node": "grunt test-node",
  33. "test-types": "tsc --noEmit ./test/type-test.ts && ts-node ./test/type-test.ts",
  34. "dist": "grunt dist",
  35. "dist-build": "grunt dist-build",
  36. "watch": "grunt watch"
  37. },
  38. "dependencies": {},
  39. "devDependencies": {
  40. "@types/core-js": "2.5.0",
  41. "@types/node": "^12.0.4",
  42. "grunt": "~1.5.3",
  43. "grunt-cli": "^1.4.3",
  44. "grunt-contrib-clean": "^1.1.0",
  45. "grunt-contrib-concat": "~0.5.0",
  46. "grunt-contrib-connect": "^3.0.0",
  47. "grunt-contrib-jasmine": "^4.0.0",
  48. "grunt-contrib-jshint": "^3.2.0",
  49. "grunt-contrib-uglify": "^3.4.0",
  50. "grunt-contrib-watch": "^1.1.0",
  51. "grunt-open": "~0.2.3",
  52. "grunt-preprocess": "^5.1.0",
  53. "jasmine": "^2.4.1",
  54. "ts-node": "^10.9.2",
  55. "typescript": "^3.5.1"
  56. },
  57. "keywords": [
  58. "log",
  59. "logger",
  60. "logging",
  61. "browser"
  62. ]
  63. }