package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. {
  2. "_from": "table@^6.0.4",
  3. "_id": "table@6.6.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-iZMtp5tUvcnAdtHpZTWLPF0M7AgiQsURR2DwmxnJwSy8I3+cY+ozzVvYha3BOLG2TB+L0CqjIz+91htuj6yCXg==",
  6. "_location": "/table",
  7. "_phantomChildren": {
  8. "fast-deep-equal": "3.1.3",
  9. "require-from-string": "2.0.2",
  10. "uri-js": "4.4.1"
  11. },
  12. "_requested": {
  13. "type": "range",
  14. "registry": true,
  15. "raw": "table@^6.0.4",
  16. "name": "table",
  17. "escapedName": "table",
  18. "rawSpec": "^6.0.4",
  19. "saveSpec": null,
  20. "fetchSpec": "^6.0.4"
  21. },
  22. "_requiredBy": [
  23. "/eslint"
  24. ],
  25. "_resolved": "https://registry.npmjs.org/table/-/table-6.6.0.tgz",
  26. "_shasum": "905654b79df98d9e9a973de1dd58682532c40e8e",
  27. "_spec": "table@^6.0.4",
  28. "_where": "/home/girishm/Projects/op-mattermost-plugin/node_modules/eslint",
  29. "author": {
  30. "name": "Gajus Kuizinas",
  31. "email": "gajus@gajus.com",
  32. "url": "http://gajus.com"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/gajus/table/issues"
  36. },
  37. "bundleDependencies": false,
  38. "dependencies": {
  39. "ajv": "^8.0.1",
  40. "lodash.clonedeep": "^4.5.0",
  41. "lodash.flatten": "^4.4.0",
  42. "lodash.truncate": "^4.4.2",
  43. "slice-ansi": "^4.0.0",
  44. "string-width": "^4.2.0",
  45. "strip-ansi": "^6.0.0"
  46. },
  47. "deprecated": false,
  48. "description": "Formats data into a string table.",
  49. "devDependencies": {
  50. "@types/chai": "^4.2.16",
  51. "@types/lodash.clonedeep": "^4.5.6",
  52. "@types/lodash.flatten": "^4.4.6",
  53. "@types/lodash.mapvalues": "^4.6.6",
  54. "@types/lodash.truncate": "^4.4.6",
  55. "@types/mocha": "^8.2.2",
  56. "@types/node": "^14.14.37",
  57. "@types/sinon": "^10.0.0",
  58. "@types/slice-ansi": "^4.0.0",
  59. "ajv-cli": "^5.0.0",
  60. "ajv-keywords": "^5.0.0",
  61. "chai": "^4.2.0",
  62. "chalk": "^4.1.0",
  63. "coveralls": "^3.1.0",
  64. "eslint": "^7.16.0",
  65. "eslint-config-canonical": "^25.0.0",
  66. "gitdown": "^3.1.3",
  67. "husky": "^4.3.6",
  68. "js-beautify": "^1.13.0",
  69. "lodash.mapvalues": "^4.6.0",
  70. "mkdirp": "^1.0.4",
  71. "mocha": "^8.2.1",
  72. "nyc": "^15.1.0",
  73. "semantic-release": "^17.3.1",
  74. "sinon": "^9.2.2",
  75. "ts-node": "^9.1.1",
  76. "typescript": "4.2.4"
  77. },
  78. "engines": {
  79. "node": ">=10.0.0"
  80. },
  81. "files": [
  82. "dist/**/*.js",
  83. "dist/**/*.d.ts"
  84. ],
  85. "homepage": "https://github.com/gajus/table#readme",
  86. "husky": {
  87. "hooks": {
  88. "post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
  89. "pre-commit": "npm run build && npm run lint && npm run test"
  90. }
  91. },
  92. "keywords": [
  93. "ascii",
  94. "text",
  95. "table",
  96. "align",
  97. "ansi"
  98. ],
  99. "license": "BSD-3-Clause",
  100. "main": "./dist/index.js",
  101. "name": "table",
  102. "nyc": {
  103. "extensions": [
  104. ".ts"
  105. ],
  106. "exclude": [
  107. "src/generated/validators.js",
  108. "test/**/*.ts"
  109. ],
  110. "reporter": [
  111. "text-lcov"
  112. ]
  113. },
  114. "repository": {
  115. "type": "git",
  116. "url": "git+https://github.com/gajus/table.git"
  117. },
  118. "scripts": {
  119. "build": "npm run create-validators && npm run compile",
  120. "compile": "tsc",
  121. "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
  122. "create-validators": "rm -fr ./src/generated && mkdirp ./src/generated && ajv compile --all-errors --inline-refs=false -s src/schemas/config -s src/schemas/streamConfig -r src/schemas/shared -c ajv-keywords/dist/keywords/typeof -o | js-beautify > ./src/generated/validators.js",
  123. "lint": "eslint --ignore-path .gitignore ./src ./test",
  124. "prebuild": "rm -fr ./dist && mkdirp dist",
  125. "test": "npm run create-validators && mocha --require ts-node/register ./test/**/*.ts"
  126. },
  127. "version": "6.6.0"
  128. }