package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "localforage-getitems",
  3. "version": "1.4.2",
  4. "description": "Adds getItems method to localForage.",
  5. "homepage": "https://github.com/thgreasi/localForage-getItems",
  6. "main": "dist/localforage-getitems.js",
  7. "jsnext:main": "dist/localforage-getitems.es6.js",
  8. "typings": "typings/index.d.ts",
  9. "scripts": {
  10. "prebuild": "eslint lib test",
  11. "build": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
  12. "pretest": "rollup -c rollup.config.test.js",
  13. "test": "mocha build/test-bundle.js && tsc --project typing-tests",
  14. "prepublish": "npm run build && npm test"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/thgreasi/localForage-getItems.git"
  19. },
  20. "keywords": [
  21. "localforage",
  22. "getItems"
  23. ],
  24. "author": "Thodoris Greasidis",
  25. "licence": "Apache-2.0",
  26. "bugs": {
  27. "url": "http://github.com/thgreasi/localForage-getItems/issues"
  28. },
  29. "devDependencies": {
  30. "babel-eslint": "^7.1.1",
  31. "babel-plugin-external-helpers": "^6.18.0",
  32. "babel-preset-es2015": "^6.18.0",
  33. "babel-register": "^6.18.0",
  34. "babelrc-rollup": "^3.0.0",
  35. "eslint": "^2.8.0",
  36. "mocha": "^2.4.5",
  37. "mochainon": "^2.0.0",
  38. "requirejs": "^2.2.0",
  39. "rollup": "^0.37.0",
  40. "rollup-plugin-babel": "^2.7.1",
  41. "rollup-plugin-multi-entry": "^2.0.1",
  42. "source-map-support": "^0.4.0",
  43. "typescript": "^2.0.3"
  44. },
  45. "dependencies": {
  46. "localforage": ">=1.4.0"
  47. }
  48. }