package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "global",
  3. "version": "4.4.0",
  4. "description": "Require global variables",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/Raynos/global.git",
  8. "main": "window.js",
  9. "homepage": "https://github.com/Raynos/global",
  10. "contributors": [
  11. {
  12. "name": "Raynos"
  13. }
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Raynos/global/issues",
  17. "email": "raynos2@gmail.com"
  18. },
  19. "browser": {
  20. "min-document": false,
  21. "individual": false
  22. },
  23. "dependencies": {
  24. "min-document": "^2.19.0",
  25. "process": "^0.11.10"
  26. },
  27. "devDependencies": {
  28. "tape": "^2.12.0"
  29. },
  30. "license": "MIT",
  31. "scripts": {
  32. "test": "node ./test",
  33. "build": "browserify test/index.js -o test/static/bundle.js",
  34. "testem": "testem"
  35. },
  36. "testling": {
  37. "files": "test/index.js",
  38. "browsers": {
  39. "ie": [
  40. "8",
  41. "9",
  42. "10"
  43. ],
  44. "firefox": [
  45. "16",
  46. "17",
  47. "nightly"
  48. ],
  49. "chrome": [
  50. "22",
  51. "23",
  52. "canary"
  53. ],
  54. "opera": [
  55. "12",
  56. "next"
  57. ],
  58. "safari": [
  59. "5.1"
  60. ]
  61. }
  62. }
  63. }