package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "_from": "table@^6.8.0",
  3. "_id": "table@6.8.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==",
  6. "_location": "/table",
  7. "_phantomChildren": {
  8. "astral-regex": "2.0.0",
  9. "fast-deep-equal": "3.1.3",
  10. "is-fullwidth-code-point": "3.0.0",
  11. "require-from-string": "2.0.2",
  12. "uri-js": "4.4.1"
  13. },
  14. "_requested": {
  15. "type": "range",
  16. "registry": true,
  17. "raw": "table@^6.8.0",
  18. "name": "table",
  19. "escapedName": "table",
  20. "rawSpec": "^6.8.0",
  21. "saveSpec": null,
  22. "fetchSpec": "^6.8.0"
  23. },
  24. "_requiredBy": [
  25. "/stylelint"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz",
  28. "_shasum": "87e28f14fa4321c3377ba286f07b79b281a3b3ca",
  29. "_spec": "table@^6.8.0",
  30. "_where": "H:\\gs_nuxt\\node_modules\\stylelint",
  31. "author": {
  32. "name": "Gajus Kuizinas",
  33. "email": "gajus@gajus.com",
  34. "url": "http://gajus.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/gajus/table/issues"
  38. },
  39. "bundleDependencies": false,
  40. "dependencies": {
  41. "ajv": "^8.0.1",
  42. "lodash.truncate": "^4.4.2",
  43. "slice-ansi": "^4.0.0",
  44. "string-width": "^4.2.3",
  45. "strip-ansi": "^6.0.1"
  46. },
  47. "deprecated": false,
  48. "description": "Formats data into a string table.",
  49. "devDependencies": {
  50. "@types/chai": "^4.2.16",
  51. "@types/lodash.mapvalues": "^4.6.6",
  52. "@types/lodash.truncate": "^4.4.6",
  53. "@types/mocha": "^9.0.0",
  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.32.0",
  63. "eslint-config-canonical": "^25.0.0",
  64. "gitdown": "^3.1.4",
  65. "husky": "^4.3.6",
  66. "js-beautify": "^1.14.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": "^12.0.1",
  73. "ts-node": "^9.1.1",
  74. "typescript": "4.5.2"
  75. },
  76. "engines": {
  77. "node": ">=10.0.0"
  78. },
  79. "files": [
  80. "dist/src/"
  81. ],
  82. "homepage": "https://github.com/gajus/table#readme",
  83. "husky": {
  84. "hooks": {
  85. "post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
  86. "pre-commit": "npm run build && npm run lint && npm run test"
  87. }
  88. },
  89. "keywords": [
  90. "ascii",
  91. "text",
  92. "table",
  93. "align",
  94. "ansi"
  95. ],
  96. "license": "BSD-3-Clause",
  97. "main": "./dist/src/index.js",
  98. "name": "table",
  99. "repository": {
  100. "type": "git",
  101. "url": "git+https://github.com/gajus/table.git"
  102. },
  103. "scripts": {
  104. "build": "npm run create-validators && tsc",
  105. "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
  106. "create-validators": "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",
  107. "lint": "eslint ./src ./test",
  108. "prebuild": "rm -fr ./src/generated && mkdirp ./src/generated",
  109. "test": "nyc mocha && nyc check-coverage --lines 95"
  110. },
  111. "version": "6.8.0"
  112. }