package.json 1.5 KB

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