bower.json 484 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "localstorage-memory",
  3. "version": "1.0.1",
  4. "homepage": "https://gr2m.github.com/localstorage-memory",
  5. "authors": [
  6. "Gregor Martynus"
  7. ],
  8. "description": "localStorage-compatible API, but only stored in memory",
  9. "main": "lib/localstorage-memory.js",
  10. "moduleType": [
  11. "amd",
  12. "globals",
  13. "node"
  14. ],
  15. "keywords": [
  16. "localStorage"
  17. ],
  18. "license": "MIT",
  19. "ignore": [
  20. "**/.*",
  21. "node_modules",
  22. "bower_components",
  23. "tests"
  24. ]
  25. }