package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "version": "1.0.0",
  3. "name": "circular-json-for-egg",
  4. "description": "JSON does not handle circular references. This version does",
  5. "license": "MIT",
  6. "homepage": "https://github.com/eggjs/circular-json",
  7. "keywords": [
  8. "JSON",
  9. "circular",
  10. "reference",
  11. "recursive",
  12. "recursion",
  13. "parse",
  14. "stringify"
  15. ],
  16. "files": [
  17. "build"
  18. ],
  19. "generator": "https://github.com/WebReflection/gitstrap",
  20. "author": {
  21. "name": "Andrea Giammarchi",
  22. "web": "http://webreflection.blogspot.com/"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/WebReflection/circular-json.git"
  27. },
  28. "unpkg": "build/circular-json.js",
  29. "main": "./build/circular-json.node.js",
  30. "scripts": {
  31. "test": "istanbul cover test/circular-json.js",
  32. "coveralls": "cat ./coverage/lcov.info | coveralls",
  33. "web": "$(sleep 2 && open http://0.0.0.0:7151/) & tiny-cdn run ./",
  34. "prepublish": "make build"
  35. },
  36. "devDependencies": {
  37. "coveralls": "^2.13.0",
  38. "istanbul": "^0.4.5",
  39. "tiny-cdn": "^0.7.0",
  40. "tressa": "^0.3.1"
  41. }
  42. }