package.json 3.1 KB

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