package.json 989 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "idb",
  3. "version": "6.1.5",
  4. "description": "A small wrapper that makes IndexedDB usable",
  5. "main": "build/cjs/index.js",
  6. "module": "build/esm/index.js",
  7. "typings": "build/esm/index.d.ts",
  8. "scripts": {
  9. "build": "PRODUCTION=1 rollup -c && node --experimental-modules lib/size-report.mjs",
  10. "dev": "rollup -c --watch"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/jakearchibald/idb.git"
  15. },
  16. "files": [
  17. "build/**",
  18. "with-*"
  19. ],
  20. "author": "Jake Archibald",
  21. "license": "ISC",
  22. "devDependencies": {
  23. "@rollup/plugin-commonjs": "^19.0.0",
  24. "@types/chai": "^4.2.18",
  25. "@types/mocha": "^8.2.2",
  26. "chai": "^4.3.4",
  27. "conditional-type-checks": "^1.0.5",
  28. "del": "^6.0.0",
  29. "filesize": "^6.3.0",
  30. "glob": "^7.1.7",
  31. "mocha": "^8.4.0",
  32. "prettier": "^2.3.0",
  33. "rollup": "^2.48.0",
  34. "rollup-plugin-node-resolve": "^5.2.0",
  35. "rollup-plugin-terser": "^7.0.2",
  36. "typescript": "^4.3.1-rc"
  37. }
  38. }