package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "cli-table3",
  3. "version": "0.6.3",
  4. "description": "Pretty unicode tables for the command line. Based on the original cli-table.",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "files": [
  8. "src/",
  9. "index.d.ts",
  10. "index.js"
  11. ],
  12. "directories": {
  13. "test": "test"
  14. },
  15. "dependencies": {
  16. "string-width": "^4.2.0"
  17. },
  18. "devDependencies": {
  19. "cli-table": "^0.3.1",
  20. "eslint": "^6.0.0",
  21. "eslint-config-prettier": "^6.0.0",
  22. "eslint-plugin-prettier": "^3.0.0",
  23. "jest": "^25.2.4",
  24. "jest-runner-eslint": "^0.7.0",
  25. "lerna-changelog": "^1.0.1",
  26. "prettier": "2.3.2"
  27. },
  28. "optionalDependencies": {
  29. "@colors/colors": "1.5.0"
  30. },
  31. "scripts": {
  32. "changelog": "lerna-changelog",
  33. "docs": "node ./scripts/update-docs.js",
  34. "prettier": "prettier --write '{examples,lib,scripts,src,test}/**/*.js'",
  35. "test": "jest --color",
  36. "test:watch": "jest --color --watchAll --notify"
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/cli-table/cli-table3.git"
  41. },
  42. "keywords": [
  43. "node",
  44. "command",
  45. "line",
  46. "cli",
  47. "table",
  48. "tables",
  49. "tabular",
  50. "unicode",
  51. "colors",
  52. "grid"
  53. ],
  54. "author": "James Talmage",
  55. "license": "MIT",
  56. "bugs": {
  57. "url": "https://github.com/cli-table/cli-table3/issues"
  58. },
  59. "homepage": "https://github.com/cli-table/cli-table3",
  60. "engines": {
  61. "node": "10.* || >= 12.*"
  62. },
  63. "changelog": {
  64. "repo": "cli-table/cli-table3",
  65. "labels": {
  66. "breaking": ":boom: Breaking Change",
  67. "enhancement": ":rocket: Enhancement",
  68. "bug": ":bug: Bug Fix",
  69. "documentation": ":memo: Documentation",
  70. "internal": ":house: Internal"
  71. }
  72. },
  73. "jest": {
  74. "projects": [
  75. {
  76. "displayName": "test",
  77. "testMatch": [
  78. "<rootDir>/test/**/*.js"
  79. ]
  80. },
  81. {
  82. "runner": "jest-runner-eslint",
  83. "displayName": "lint",
  84. "testMatch": [
  85. "<rootDir>/examples/**/*.js",
  86. "<rootDir>/lib/**/*.js",
  87. "<rootDir>/scripts/**/*.js",
  88. "<rootDir>/src/**/*.js",
  89. "<rootDir>/test/**/*.js"
  90. ]
  91. }
  92. ]
  93. },
  94. "prettier": {
  95. "printWidth": 120,
  96. "tabWidth": 2,
  97. "singleQuote": true,
  98. "trailingComma": "es5"
  99. }
  100. }