package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "json3",
  3. "version": "3.3.2",
  4. "description": "A modern JSON implementation compatible with nearly all JavaScript platforms.",
  5. "homepage": "http://bestiejs.github.io/json3",
  6. "main": "./lib/json3",
  7. "keywords": ["json", "spec", "ecma", "es5", "lexer", "parser", "stringify"],
  8. "licenses": [{
  9. "type": "MIT",
  10. "url": "http://kit.mit-license.org/"
  11. }],
  12. "author": {
  13. "name": "Kit Cambridge",
  14. "email": "github@kitcambridge.be",
  15. "web": "http://kitcambridge.be/"
  16. },
  17. "maintainers": [{
  18. "name": "Kit Cambridge",
  19. "email": "github@kitcambridge.be",
  20. "web": "http://kitcambridge.be/"
  21. }, {
  22. "name": "Benjamin Tan",
  23. "email": "demoneaux@gmail.com",
  24. "web": "http://d10.github.io/"
  25. }],
  26. "contributors": [{
  27. "name": "Mangled Deutz",
  28. "email": "olivier@webitup.fr",
  29. "web": "http://tech.roxee.tv/"
  30. }, {
  31. "name": "Øyvind Sean Kinsey",
  32. "email": "oyvind@kinsey.no",
  33. "web": "http://fb.me/ok"
  34. }, {
  35. "name": "Oskar Schöldström",
  36. "email": "public@oxy.fi",
  37. "web": "http://oxy.fi/"
  38. }, {
  39. "name": "Kiryl Yermakou",
  40. "email": "rma4ok@gmail.com",
  41. "web": "https://github.com/rma4ok"
  42. }],
  43. "bugs": {
  44. "url": "https://github.com/bestiejs/json3/issues"
  45. },
  46. "scripts": {
  47. "test": "node test/test_*.js"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "git://github.com/bestiejs/json3.git"
  52. },
  53. "files": ["README.md", "LICENSE", "lib/json3.js", "lib/json3.min.js"],
  54. "jam": {
  55. "main": "./lib/json3.js",
  56. "includes": ["README.md", "LICENSE", "lib/json3.js", "lib/json3.min.js"]
  57. },
  58. "volo": {
  59. "type": "directory",
  60. "ignore": [
  61. ".*",
  62. "build.js",
  63. "index.html",
  64. "component.json",
  65. "bower.json",
  66. "benchmark",
  67. "page",
  68. "test",
  69. "vendor"
  70. ]
  71. }
  72. }