package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "loglevel-plugin-prefix",
  3. "description": "Plugin for loglevel message prefixing",
  4. "author": {
  5. "name": "kutuluk"
  6. },
  7. "keywords": [
  8. "log",
  9. "logger",
  10. "logging",
  11. "browser",
  12. "node",
  13. "prefix",
  14. "colored",
  15. "loglevel",
  16. "plugin"
  17. ],
  18. "homepage": "https://github.com/kutuluk/loglevel-plugin-prefix",
  19. "bugs": {
  20. "url": "https://github.com/kutuluk/loglevel-plugin-prefix/issues"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git@github.com:kutuluk/loglevel-plugin-prefix.git"
  25. },
  26. "license": "MIT",
  27. "version": "0.8.4",
  28. "main": "./lib/loglevel-plugin-prefix",
  29. "types": "index.d.ts",
  30. "scripts": {
  31. "eslint": "eslint ./lib/loglevel-plugin-prefix.js",
  32. "test": "mocha",
  33. "example": "node ./example/example.js",
  34. "uglifyjs": "uglifyjs ./lib/loglevel-plugin-prefix.js -o ./dist/loglevel-plugin-prefix.min.js -c -m",
  35. "build": "npm install && npm run eslint && npm run test && npm run uglifyjs"
  36. },
  37. "devDependencies": {
  38. "chai": "^4.1.2",
  39. "chalk": "^2.4.1",
  40. "eslint": "^3.19.0",
  41. "eslint-config-airbnb-base": "^11.3.2",
  42. "eslint-plugin-chai-friendly": "^0.3.6",
  43. "eslint-plugin-import": "^2.12.0",
  44. "loglevel": "^1.6.1",
  45. "loglevel-plugin-mock": "^0.1.0",
  46. "mocha": "^3.5.3",
  47. "sinon": "^2.4.1",
  48. "uglify-js": "^3.4.0"
  49. }
  50. }