package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@base2/pretty-print-object",
  3. "version": "1.0.1",
  4. "description": "Convert an object or array into a formatted string",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/Chris-Baker/pretty-print-object"
  8. },
  9. "main": "./dist/index.js",
  10. "scripts": {
  11. "build": "tsc",
  12. "test": "jest --verbose"
  13. },
  14. "keywords": [
  15. "object",
  16. "stringify",
  17. "pretty",
  18. "print",
  19. "dump",
  20. "format",
  21. "type",
  22. "json"
  23. ],
  24. "files": [
  25. "dist/"
  26. ],
  27. "author": "Chris Baker",
  28. "license": "BSD-2-Clause",
  29. "dependencies": {},
  30. "devDependencies": {
  31. "@babel/core": "^7.4.3",
  32. "@babel/plugin-transform-runtime": "^7.4.3",
  33. "@babel/preset-env": "^7.4.3",
  34. "@babel/preset-typescript": "^7.3.3",
  35. "@babel/runtime": "^7.5.5",
  36. "@types/jest": "^24.0.13",
  37. "eslint": "^6.2.2",
  38. "eslint-config-prettier": "^6.1.0",
  39. "eslint-plugin-prettier": "^3.1.0",
  40. "jest": "^24.8.0",
  41. "prettier": "^1.15.3",
  42. "pretty-quick": "^1.8.0",
  43. "typescript": "^3.6.2"
  44. }
  45. }