package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "eazy-logger",
  3. "description": "Simple cli logger",
  4. "version": "3.1.0",
  5. "homepage": "https://github.com/shakyshane/easy-logger",
  6. "author": {
  7. "name": "Shane Osbourne"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/shakyshane/easy-logger.git"
  12. },
  13. "bugs": {
  14. "url": "https://github.com/shakyshane/easy-logger/issues"
  15. },
  16. "licenses": [
  17. {
  18. "type": "Apache 2.0",
  19. "url": "https://github.com/shakyshane/easy-logger/blob/master/LICENSE"
  20. }
  21. ],
  22. "files": [
  23. "index.js",
  24. "lodash.custom.js",
  25. "example.js"
  26. ],
  27. "main": "index.js",
  28. "engines": {
  29. "node": ">= 0.8.0"
  30. },
  31. "scripts": {
  32. "lint": "jshint index.js test/*.js",
  33. "test": "npm run lint && mocha",
  34. "lodash": "lodash include=cloneDeep,merge exports=node",
  35. "cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
  36. },
  37. "dependencies": {
  38. "tfunk": "^4.0.0"
  39. },
  40. "devDependencies": {
  41. "chai": "^3.5.0",
  42. "chalk": "^1.1.1",
  43. "coveralls": "^2.11.2",
  44. "jshint": "^2.6.0",
  45. "lodash-cli": "4.12.0",
  46. "mocha": "^2.1.0",
  47. "sinon": "^1.12.2"
  48. },
  49. "keywords": [
  50. "plugins"
  51. ],
  52. "__npminstall_done": true,
  53. "_from": "eazy-logger@3.1.0",
  54. "_resolved": "https://registry.npmmirror.com/eazy-logger/-/eazy-logger-3.1.0.tgz"
  55. }