package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "author": {
  3. "email": "gajus@gajus.com",
  4. "name": "Gajus Kuizinas",
  5. "url": "http://gajus.com"
  6. },
  7. "dependencies": {
  8. "ajv": "^5.2.3",
  9. "ajv-keywords": "^2.1.0",
  10. "chalk": "^2.1.0",
  11. "lodash": "^4.17.4",
  12. "slice-ansi": "1.0.0",
  13. "string-width": "^2.1.1"
  14. },
  15. "description": "Formats data into a string table.",
  16. "devDependencies": {
  17. "ajv-cli": "^2.1.0",
  18. "babel": "^6.23.0",
  19. "babel-cli": "^6.26.0",
  20. "babel-core": "^6.26.0",
  21. "babel-plugin-istanbul": "^4.1.5",
  22. "babel-preset-es2015-node4": "^2.1.1",
  23. "babel-register": "^6.26.0",
  24. "chai": "^4.1.2",
  25. "eslint": "^4.7.2",
  26. "eslint-config-canonical": "^9.3.1",
  27. "gitdown": "^2.5.1",
  28. "husky": "^0.14.3",
  29. "mocha": "^3.5.3",
  30. "nyc": "^11.2.1",
  31. "sinon": "^4.0.0"
  32. },
  33. "keywords": [
  34. "ascii",
  35. "text",
  36. "table",
  37. "align",
  38. "ansi"
  39. ],
  40. "license": "BSD-3-Clause",
  41. "main": "./dist/index.js",
  42. "name": "table",
  43. "nyc": {
  44. "include": [
  45. "src/*.js"
  46. ],
  47. "instrument": false,
  48. "lines": 70,
  49. "require": [
  50. "babel-register"
  51. ],
  52. "sourceMap": false
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "https://github.com/gajus/table"
  57. },
  58. "scripts": {
  59. "build": "rm -fr ./dist && NODE_ENV=production babel --copy-files ./src --out-dir ./dist && npm run make-validators",
  60. "lint": "npm run build && eslint ./src ./tests",
  61. "make-readme": "gitdown ./.README/README.md --output-file ./README.md",
  62. "make-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",
  63. "precommit": "npm run lint && npm run test",
  64. "prepublish": "NODE_ENV=production npm run build",
  65. "test": "npm run build && nyc --check-coverage mocha"
  66. },
  67. "version": "4.0.2",
  68. "__npminstall_done": "Thu Dec 24 2020 20:20:57 GMT+0800 (CST)",
  69. "_from": "table@4.0.2",
  70. "_resolved": "https://registry.npm.taobao.org/table/download/table-4.0.2.tgz?cache=0&sync_timestamp=1605825106509&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftable%2Fdownload%2Ftable-4.0.2.tgz"
  71. }