You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
3.2 KiB

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