package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "_from": "table@^5.2.3",
  3. "_id": "table@5.4.6",
  4. "_inBundle": false,
  5. "_integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==",
  6. "_location": "/table",
  7. "_phantomChildren": {
  8. "ansi-regex": "4.1.1"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "table@^5.2.3",
  14. "name": "table",
  15. "escapedName": "table",
  16. "rawSpec": "^5.2.3",
  17. "saveSpec": null,
  18. "fetchSpec": "^5.2.3"
  19. },
  20. "_requiredBy": [
  21. "/eslint"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz",
  24. "_shasum": "1292d19500ce3f86053b05f0e8e7e4a3bb21079e",
  25. "_spec": "table@^5.2.3",
  26. "_where": "D:\\qianger\\7\\jindouyunNewFront\\node_modules\\eslint",
  27. "author": {
  28. "name": "Gajus Kuizinas",
  29. "email": "gajus@gajus.com",
  30. "url": "http://gajus.com"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/gajus/table/issues"
  34. },
  35. "bundleDependencies": false,
  36. "dependencies": {
  37. "ajv": "^6.10.2",
  38. "lodash": "^4.17.14",
  39. "slice-ansi": "^2.1.0",
  40. "string-width": "^3.0.0"
  41. },
  42. "deprecated": false,
  43. "description": "Formats data into a string table.",
  44. "devDependencies": {
  45. "@babel/cli": "^7.5.0",
  46. "@babel/core": "^7.5.4",
  47. "@babel/node": "^7.5.0",
  48. "@babel/plugin-transform-flow-strip-types": "^7.4.4",
  49. "@babel/preset-env": "^7.5.4",
  50. "@babel/register": "^7.4.4",
  51. "ajv-cli": "^3.0.0",
  52. "ajv-keywords": "^3.4.1",
  53. "babel-plugin-istanbul": "^5.1.4",
  54. "babel-plugin-lodash": "^3.3.4",
  55. "babel-plugin-transform-export-default-name": "^2.0.4",
  56. "chai": "^4.2.0",
  57. "chalk": "^2.4.2",
  58. "coveralls": "^3.0.5",
  59. "eslint": "^5.13.0",
  60. "eslint-config-canonical": "^16.1.0",
  61. "flow-bin": "^0.102.0",
  62. "flow-copy-source": "^2.0.7",
  63. "gitdown": "^3.1.1",
  64. "husky": "^3.0.0",
  65. "mocha": "^6.1.4",
  66. "nyc": "^14.1.1",
  67. "semantic-release": "^15.13.18",
  68. "sinon": "^7.3.2"
  69. },
  70. "engines": {
  71. "node": ">=6.0.0"
  72. },
  73. "homepage": "https://github.com/gajus/table#readme",
  74. "husky": {
  75. "hooks": {
  76. "post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
  77. "pre-commit": "npm run lint && npm run test && npm run build"
  78. }
  79. },
  80. "keywords": [
  81. "ascii",
  82. "text",
  83. "table",
  84. "align",
  85. "ansi"
  86. ],
  87. "license": "BSD-3-Clause",
  88. "main": "./dist/index.js",
  89. "name": "table",
  90. "nyc": {
  91. "include": [
  92. "src/**/*.js"
  93. ],
  94. "instrument": false,
  95. "reporter": [
  96. "text-lcov"
  97. ],
  98. "require": [
  99. "@babel/register"
  100. ],
  101. "sourceMap": false
  102. },
  103. "repository": {
  104. "type": "git",
  105. "url": "git+https://github.com/gajus/table.git"
  106. },
  107. "scripts": {
  108. "build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && npm run create-validators && flow-copy-source src dist",
  109. "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
  110. "create-validators": "ajv compile --all-errors --inline-refs=false -s src/schemas/config -c ajv-keywords/keywords/typeof -o dist/validateConfig.js && ajv compile --all-errors --inline-refs=false -s src/schemas/streamConfig -c ajv-keywords/keywords/typeof -o dist/validateStreamConfig.js",
  111. "lint": "npm run build && eslint ./src ./test && flow",
  112. "test": "mocha --require @babel/register"
  113. },
  114. "version": "5.4.6"
  115. }