Açıklama Yok

package.json 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "cliui",
  3. "version": "2.1.0",
  4. "description": "easily create complex multi-column command-line-interfaces",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard && mocha --check-leaks --ui exports --require patched-blanket -R mocoverage"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "http://github.com/bcoe/cliui.git"
  12. },
  13. "config": {
  14. "blanket": {
  15. "pattern": [
  16. "index.js"
  17. ],
  18. "data-cover-never": [
  19. "node_modules",
  20. "test"
  21. ],
  22. "output-reporter": "spec"
  23. }
  24. },
  25. "standard": {
  26. "ignore": [
  27. "**/example/**"
  28. ],
  29. "globals": [
  30. "it"
  31. ]
  32. },
  33. "keywords": [
  34. "cli",
  35. "command-line",
  36. "layout",
  37. "design",
  38. "console",
  39. "wrap",
  40. "table"
  41. ],
  42. "author": "Ben Coe <ben@npmjs.com>",
  43. "license": "ISC",
  44. "dependencies": {
  45. "center-align": "^0.1.1",
  46. "right-align": "^0.1.1",
  47. "wordwrap": "0.0.2"
  48. },
  49. "devDependencies": {
  50. "blanket": "^1.1.6",
  51. "chai": "^2.2.0",
  52. "coveralls": "^2.11.2",
  53. "mocha": "^2.2.4",
  54. "mocha-lcov-reporter": "0.0.2",
  55. "mocoverage": "^1.0.0",
  56. "patched-blanket": "^1.0.1",
  57. "standard": "^3.6.1"
  58. }
  59. }