Няма описание

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "console-browserify",
  3. "version": "1.1.0",
  4. "description": "Emulate console for all the browsers",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/Raynos/console-browserify.git",
  8. "main": "index",
  9. "homepage": "https://github.com/Raynos/console-browserify",
  10. "contributors": [
  11. {
  12. "name": "Raynos"
  13. }
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Raynos/console-browserify/issues",
  17. "email": "raynos2@gmail.com"
  18. },
  19. "dependencies": {
  20. "date-now": "^0.1.4"
  21. },
  22. "devDependencies": {
  23. "tape": "^2.12.3",
  24. "jsonify": "0.0.0",
  25. "tap-spec": "^0.1.8",
  26. "run-browser": "^1.3.0",
  27. "tap-dot": "^0.2.1"
  28. },
  29. "licenses": [
  30. {
  31. "type": "MIT",
  32. "url": "http://github.com/Raynos/console-browserify/raw/master/LICENSE"
  33. }
  34. ],
  35. "scripts": {
  36. "test": "node ./test/index.js | tap-spec",
  37. "dot": "node ./test/index.js | tap-dot",
  38. "start": "node ./index.js",
  39. "cover": "istanbul cover --report none --print detail ./test/index.js",
  40. "view-cover": "istanbul report html && google-chrome ./coverage/index.html",
  41. "browser": "run-browser test/index.js",
  42. "phantom": "run-browser test/index.js -b | tap-spec",
  43. "build": "browserify test/index.js -o test/static/bundle.js",
  44. "testem": "testem"
  45. },
  46. "testling": {
  47. "files": "test/index.js",
  48. "browsers": [
  49. "ie/8..latest",
  50. "firefox/16..latest",
  51. "firefox/nightly",
  52. "chrome/22..latest",
  53. "chrome/canary",
  54. "opera/12..latest",
  55. "opera/next",
  56. "safari/5.1..latest",
  57. "ipad/6.0..latest",
  58. "iphone/6.0..latest",
  59. "android-browser/4.2..latest"
  60. ]
  61. }
  62. }