UNPKG

@vlsergey/react-indexdb-repo

Version:

React Components to work with IndexDB repositories

53 lines (52 loc) 2.14 kB
{ "name": "@vlsergey/react-indexdb-repo", "version": "5.0.0", "description": "React Components to work with IndexDB repositories", "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "scripts": { "clean": "rimraf lib/*", "build": "cross-env NODE_ENV=production tsc -p ./src/tsconfig-cjs.json && cross-env NODE_ENV=production tsc -p ./src/tsconfig-esm.json", "build:watch": "cross-env NODE_ENV=development tsc -w --preserveWatchOutput -p ./src/tsconfig-esm.json", "check": "npm run eslint:fix && npm run build && npm run test", "eslint:check": "eslint --ignore-pattern \"!.eslintrc.js\" .eslintrc.js karma.conf.js src/**/*.ts* test/**/*.ts*", "eslint:fix": "eslint --ignore-pattern \"!.eslintrc.js\" --fix .eslintrc.js karma.conf.js src/**/*.ts* test/**/*.ts*", "test": "cross-env NODE_ENV=development karma start karma.conf.js --single-run", "test:watch": "cross-env NODE_ENV=development karma start karma.conf.js --no-single-run", "test:watch:chrome": "cross-env NODE_ENV=development karma start karma.conf.js --no-single-run --browsers Chrome", "preversion": "npm run build && npm run eslint:fix && npm test && npm run clean && npm run build", "version": "npm publish --access=public", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/vlsergey/react-indexdb-repo.git" }, "keywords": [ "react", "indexdb", "vlsergey" ], "author": "Sergey Vladimirov <vlsergey@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/vlsergey/react-indexdb-repo/issues" }, "homepage": "https://github.com/vlsergey/react-indexdb-repo#readme", "devDependencies": { "@vlsergey/js-config": "^11.0.0", "chai": "^4.3.6", "fake-indexeddb": "^3.1.7", "react": "^18.0.0", "react-dom": "^18.0.0" }, "dependencies": { "@vlsergey/batcher": "^1.0.0", "@vlsergey/react-promise": "^4.0.0" }, "peerDependencies": { "prop-types": ">=15.7", "react": ">=16", "react-dom": ">=16" } }