package.json 717 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "stringify-object",
  3. "version": "3.3.0",
  4. "description": "Stringify an object/array like JSON.stringify just without all the double-quotes",
  5. "license": "BSD-2-Clause",
  6. "repository": "yeoman/stringify-object",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "object",
  23. "stringify",
  24. "pretty",
  25. "print",
  26. "dump",
  27. "format",
  28. "type",
  29. "json"
  30. ],
  31. "dependencies": {
  32. "get-own-enumerable-property-symbols": "^3.0.0",
  33. "is-obj": "^1.0.1",
  34. "is-regexp": "^1.0.0"
  35. },
  36. "devDependencies": {
  37. "ava": "*",
  38. "xo": "*"
  39. }
  40. }