package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "store2",
  3. "version": "2.14.2",
  4. "description": "Better localStorage",
  5. "keywords": [
  6. "localStorage",
  7. "sessionStorage",
  8. "json",
  9. "namespace",
  10. "store"
  11. ],
  12. "author": {
  13. "name": "Nathan Bubna",
  14. "email": "nathan@esha.com",
  15. "url": "http://www.esha.com/"
  16. },
  17. "files": [
  18. "src",
  19. "dist",
  20. "index.d.ts"
  21. ],
  22. "main": "dist/store2.js",
  23. "types": "index.d.ts",
  24. "bugs": {
  25. "url": "http://github.com/nbubna/store/issues",
  26. "email": "nathan@esha.com"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "http://github.com/nbubna/store.git"
  31. },
  32. "license": "(MIT OR GPL-3.0)",
  33. "scripts": {
  34. "prepublishOnly": "grunt && git commit -m \"$npm_package_version\" README.md *.json dist && git tag $npm_package_version && git push && git push --tags",
  35. "test": "grunt qunit"
  36. },
  37. "devDependencies": {
  38. "grunt": "^1.0.1",
  39. "grunt-cli": "^1.2.0",
  40. "grunt-component-build": "^0.2.8",
  41. "grunt-contrib-clean": "^1.0.0",
  42. "grunt-contrib-concat": "^1.0.1",
  43. "grunt-contrib-jshint": "^1.1.0",
  44. "grunt-contrib-qunit": "^1.0.0",
  45. "grunt-contrib-uglify": "^2.2.0",
  46. "grunt-contrib-watch": "^1.0.0",
  47. "grunt-lib-phantomjs": "^1.1.0",
  48. "grunt-nuget": "^0.2.0",
  49. "load-grunt-tasks": "^3.5.2",
  50. "phantomjs": "^2.1.7",
  51. "time-grunt": "^1.4.0"
  52. }
  53. }