package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "webpack-log",
  3. "version": "1.2.0",
  4. "description": "A common logging module for the Webpack ecosystem",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/webpack-log",
  7. "author": "Andrew Powell <andrew@shellscape.org>",
  8. "homepage": "http://github.com/webpack-contrib/webpack-log",
  9. "maintainers": [
  10. {
  11. "name": "Andrew Powell",
  12. "email": "andrew@shellscape.org",
  13. "url": "shellscape.org"
  14. }
  15. ],
  16. "main": "index.js",
  17. "engines": {
  18. "node": ">=6"
  19. },
  20. "scripts": {
  21. "beautify": "npm run lint -- --fix",
  22. "ci": "npm run cover -- --report lcovonly && npm run test",
  23. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  24. "lint": "eslint index.js test",
  25. "mocha": "mocha --full-trace --check-leaks",
  26. "test": "npm run lint && npm run mocha"
  27. },
  28. "files": [
  29. "index.js"
  30. ],
  31. "dependencies": {
  32. "chalk": "^2.1.0",
  33. "log-symbols": "^2.1.0",
  34. "loglevelnext": "^1.0.1",
  35. "uuid": "^3.1.0"
  36. },
  37. "devDependencies": {
  38. "assert": "^1.4.1",
  39. "codecov.io": "^0.1.6",
  40. "eslint": "^4.5.0",
  41. "eslint-config-webpack": "^1.2.5",
  42. "eslint-plugin-import": "^2.7.0",
  43. "istanbul": "^0.4.5",
  44. "mocha": "^4.0.0",
  45. "sinon": "^4.0.1",
  46. "strip-ansi": "^4.0.0"
  47. }
  48. }