package.json 3.3 KB

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