Ohm-Management - Projektarbeit B-ME
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.

package.json 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "_from": "table@^5.0.2",
  3. "_id": "table@5.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-e542in22ZLhD/fOIuXs/8yDZ9W61ltF8daM88rkRNtgTIct+vI2fTnAyu/Db2TCfEcI8i7mjZz6meLq0nW7TYg==",
  6. "_location": "/table",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "table@^5.0.2",
  12. "name": "table",
  13. "escapedName": "table",
  14. "rawSpec": "^5.0.2",
  15. "saveSpec": null,
  16. "fetchSpec": "^5.0.2"
  17. },
  18. "_requiredBy": [
  19. "/eslint"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/table/-/table-5.1.0.tgz",
  22. "_shasum": "69a54644f6f01ad1628f8178715b408dc6bf11f7",
  23. "_spec": "table@^5.0.2",
  24. "_where": "/home/erik/Documents/workspace_brackets/BME_Project_Ohm/om/node_modules/eslint",
  25. "author": {
  26. "name": "Gajus Kuizinas",
  27. "email": "gajus@gajus.com",
  28. "url": "http://gajus.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/gajus/table/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {
  35. "ajv": "^6.5.3",
  36. "lodash": "^4.17.10",
  37. "slice-ansi": "1.0.0",
  38. "string-width": "^2.1.1"
  39. },
  40. "deprecated": false,
  41. "description": "Formats data into a string table.",
  42. "devDependencies": {
  43. "@babel/cli": "^7.1.2",
  44. "@babel/core": "^7.1.2",
  45. "@babel/node": "^7.0.0",
  46. "@babel/plugin-transform-flow-strip-types": "^7.0.0",
  47. "@babel/preset-env": "^7.1.0",
  48. "@babel/register": "^7.0.0",
  49. "ajv-cli": "^3.0.0",
  50. "ajv-keywords": "^3.2.0",
  51. "babel-plugin-istanbul": "^5.1.0",
  52. "babel-plugin-transform-export-default-name": "^2.0.4",
  53. "chai": "^4.2.0",
  54. "chalk": "^2.4.1",
  55. "coveralls": "^3.0.2",
  56. "eslint": "^5.6.1",
  57. "eslint-config-canonical": "^13.0.0",
  58. "flow-bin": "^0.81.0",
  59. "flow-copy-source": "^2.0.2",
  60. "gitdown": "^2.5.4",
  61. "husky": "^1.0.1",
  62. "mocha": "^5.2.0",
  63. "nyc": "^13.1.0",
  64. "semantic-release": "^15.9.16",
  65. "sinon": "^6.3.4"
  66. },
  67. "engines": {
  68. "node": ">=6.0.0"
  69. },
  70. "homepage": "https://github.com/gajus/table#readme",
  71. "husky": {
  72. "hooks": {
  73. "post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
  74. "pre-commit": "npm run lint && npm run test && npm run build"
  75. }
  76. },
  77. "keywords": [
  78. "ascii",
  79. "text",
  80. "table",
  81. "align",
  82. "ansi"
  83. ],
  84. "license": "BSD-3-Clause",
  85. "main": "./dist/index.js",
  86. "name": "table",
  87. "nyc": {
  88. "include": [
  89. "src/**/*.js"
  90. ],
  91. "instrument": false,
  92. "reporter": [
  93. "text-lcov"
  94. ],
  95. "require": [
  96. "@babel/register"
  97. ],
  98. "sourceMap": false
  99. },
  100. "repository": {
  101. "type": "git",
  102. "url": "git+https://github.com/gajus/table.git"
  103. },
  104. "scripts": {
  105. "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",
  106. "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
  107. "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",
  108. "lint": "npm run build && eslint ./src ./test && flow",
  109. "test": "mocha --require @babel/register"
  110. },
  111. "version": "5.1.0"
  112. }