package.json 692 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "has-object-spread",
  3. "description": "check if the environment supports { ...a } spread syntax",
  4. "version": "1.0.0",
  5. "author": "Renée Kooi <renee@kooi.me>",
  6. "bugs": {
  7. "url": "https://github.com/goto-bus-stop/has-object-spread/issues"
  8. },
  9. "devDependencies": {
  10. "standard": "^10.0.3",
  11. "tape": "^4.8.0"
  12. },
  13. "homepage": "https://github.com/goto-bus-stop/has-object-spread",
  14. "keywords": [
  15. "detect",
  16. "es6",
  17. "object-spread"
  18. ],
  19. "license": "Apache-2.0",
  20. "main": "index.js",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/goto-bus-stop/has-object-spread.git"
  24. },
  25. "scripts": {
  26. "test": "standard && node test.js"
  27. }
  28. }