package.json 730 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "jsdom-global",
  3. "description": "Enable DOM in Node.js",
  4. "version": "3.0.2",
  5. "author": "Rico Sta. Cruz <rico@ricostacruz.com>",
  6. "browser": "browser.js",
  7. "bugs": {
  8. "url": "https://github.com/rstacruz/jsdom-global/issues"
  9. },
  10. "devDependencies": {
  11. "jsdom": "~10.0.0",
  12. "standard": "~10.0.2",
  13. "tape": "~4.6.3"
  14. },
  15. "homepage": "https://github.com/rstacruz/jsdom-global#readme",
  16. "keywords": [
  17. "dom",
  18. "jsdom",
  19. "test"
  20. ],
  21. "license": "MIT",
  22. "main": "index.js",
  23. "peerDependencies": {
  24. "jsdom": ">=10.0.0"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/rstacruz/jsdom-global.git"
  29. },
  30. "scripts": {
  31. "test": "node test.js && standard"
  32. }
  33. }