package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "_from": "table@^6.0.9",
  3. "_id": "table@6.7.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==",
  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.9",
  16. "name": "table",
  17. "escapedName": "table",
  18. "rawSpec": "^6.0.9",
  19. "saveSpec": null,
  20. "fetchSpec": "^6.0.9"
  21. },
  22. "_requiredBy": [
  23. "/eslint"
  24. ],
  25. "_resolved": "https://registry.npmjs.org/table/-/table-6.7.1.tgz",
  26. "_shasum": "ee05592b7143831a8c94f3cee6aae4c1ccef33e2",
  27. "_spec": "table@^6.0.9",
  28. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\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.truncate": "^4.4.2",
  42. "slice-ansi": "^4.0.0",
  43. "string-width": "^4.2.0",
  44. "strip-ansi": "^6.0.0"
  45. },
  46. "deprecated": false,
  47. "description": "Formats data into a string table.",
  48. "devDependencies": {
  49. "@types/chai": "^4.2.16",
  50. "@types/lodash.clonedeep": "^4.5.6",
  51. "@types/lodash.mapvalues": "^4.6.6",
  52. "@types/lodash.truncate": "^4.4.6",
  53. "@types/mocha": "^8.2.2",
  54. "@types/node": "^14.14.37",
  55. "@types/sinon": "^10.0.0",
  56. "@types/slice-ansi": "^4.0.0",
  57. "ajv-cli": "^5.0.0",
  58. "ajv-keywords": "^5.0.0",
  59. "chai": "^4.2.0",
  60. "chalk": "^4.1.0",
  61. "coveralls": "^3.1.0",
  62. "eslint": "^7.16.0",
  63. "eslint-config-canonical": "^25.0.0",
  64. "gitdown": "^3.1.3",
  65. "husky": "^4.3.6",
  66. "js-beautify": "^1.13.0",
  67. "lodash.mapvalues": "^4.6.0",
  68. "mkdirp": "^1.0.4",
  69. "mocha": "^8.2.1",
  70. "nyc": "^15.1.0",
  71. "semantic-release": "^17.3.1",
  72. "sinon": "^9.2.2",
  73. "ts-node": "^9.1.1",
  74. "typescript": "4.2.4"
  75. },
  76. "engines": {
  77. "node": ">=10.0.0"
  78. },
  79. "files": [
  80. "dist/**/*.js",
  81. "dist/**/*.d.ts"
  82. ],
  83. "homepage": "https://github.com/gajus/table#readme",
  84. "husky": {
  85. "hooks": {
  86. "post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
  87. "pre-commit": "npm run build && npm run lint && npm run test"
  88. }
  89. },
  90. "keywords": [
  91. "ascii",
  92. "text",
  93. "table",
  94. "align",
  95. "ansi"
  96. ],
  97. "license": "BSD-3-Clause",
  98. "main": "./dist/index.js",
  99. "name": "table",
  100. "nyc": {
  101. "extensions": [
  102. ".ts"
  103. ],
  104. "exclude": [
  105. "src/generated/validators.js",
  106. "test/**/*.ts"
  107. ],
  108. "reporter": [
  109. "text-lcov",
  110. "text"
  111. ]
  112. },
  113. "repository": {
  114. "type": "git",
  115. "url": "git+https://github.com/gajus/table.git"
  116. },
  117. "scripts": {
  118. "build": "npm run create-validators && npm run compile",
  119. "compile": "tsc",
  120. "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
  121. "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",
  122. "lint": "eslint --ignore-path .gitignore ./src ./test",
  123. "prebuild": "rm -fr ./dist && mkdirp dist",
  124. "test": "npm run create-validators && mocha --require ts-node/register \"./test/**/*.ts\""
  125. },
  126. "version": "6.7.1"
  127. }