package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "json3",
  3. "version": "3.3.3",
  4. "description": "A JSON polyfill for older JavaScript platforms.",
  5. "homepage": "https://bestiejs.github.io/json3",
  6. "main": "./lib/json3",
  7. "keywords": [
  8. "json",
  9. "spec",
  10. "ecma",
  11. "es5",
  12. "lexer",
  13. "parser",
  14. "stringify"
  15. ],
  16. "license": "MIT",
  17. "author": {
  18. "name": "Kit Cambridge",
  19. "email": "github@kitcambridge.be",
  20. "web": "http://kitcambridge.be/"
  21. },
  22. "maintainers": [
  23. {
  24. "name": "Kit Cambridge",
  25. "email": "github@kitcambridge.be",
  26. "web": "http://kitcambridge.be/"
  27. },
  28. {
  29. "name": "Benjamin Tan",
  30. "email": "demoneaux@gmail.com",
  31. "web": "https://d10.github.io/"
  32. }
  33. ],
  34. "contributors": [
  35. {
  36. "name": "Mangled Deutz",
  37. "email": "olivier@webitup.fr",
  38. "web": "http://tech.roxee.tv/"
  39. },
  40. {
  41. "name": "Øyvind Sean Kinsey",
  42. "email": "oyvind@kinsey.no",
  43. "web": "http://fb.me/ok"
  44. },
  45. {
  46. "name": "Oskar Schöldström",
  47. "email": "public@oxy.fi",
  48. "web": "http://oxy.fi/"
  49. },
  50. {
  51. "name": "Kiryl Yermakou",
  52. "email": "rma4ok@gmail.com",
  53. "web": "https://github.com/rma4ok"
  54. }
  55. ],
  56. "bugs": {
  57. "url": "https://github.com/bestiejs/json3/issues"
  58. },
  59. "scripts": {
  60. "test": "node test/test_*.js"
  61. },
  62. "repository": {
  63. "type": "git",
  64. "url": "git://github.com/bestiejs/json3.git"
  65. },
  66. "files": [
  67. "README.md",
  68. "LICENSE",
  69. "lib/json3.js",
  70. "lib/json3.min.js"
  71. ],
  72. "jam": {
  73. "main": "./lib/json3.js",
  74. "includes": [
  75. "README.md",
  76. "LICENSE",
  77. "lib/json3.js",
  78. "lib/json3.min.js"
  79. ]
  80. },
  81. "volo": {
  82. "type": "directory",
  83. "ignore": [
  84. ".*",
  85. "build.js",
  86. "index.html",
  87. "component.json",
  88. "bower.json",
  89. "benchmark",
  90. "page",
  91. "test",
  92. "vendor"
  93. ]
  94. },
  95. "devDependencies": {
  96. "curl-amd": "~0.8.12",
  97. "highlight.js": "~8.3.0",
  98. "marked": "~0.3.2",
  99. "requirejs": "~2.1.15",
  100. "spec": "~1.0.1",
  101. "tar": "~1.0.2"
  102. }
  103. }