UNPKG

fast-json-query

Version:

A lightweight and efficient JSON querying utility for filtering and searching data

106 lines (105 loc) 2.68 kB
{ "name": "fast-json-query", "version": "2.0.0", "description": "A lightweight and efficient JSON querying utility for filtering and searching data", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "sideEffects": false, "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.esm.js", "types": "./dist/index.d.ts" }, "./hooks": { "require": "./dist/hooks/index.js", "import": "./dist/hooks/index.esm.js", "types": "./dist/hooks/index.d.ts" } }, "scripts": { "test": "jest --coverage --detectOpenHandles --forceExit", "test:watch": "jest --watch", "test:ci": "jest --ci --coverage --reporters='default' --reporters='jest-junit'", "build": "rollup -c", "lint": "eslint . --fix", "format": "prettier --write .", "prepare": "husky install", "prepublishOnly": "npm run test && npm run build", "size": "size-limit", "typecheck": "tsc --noEmit" }, "keywords": [ "json-query", "mongodb-query", "react-hooks", "typescript", "json-filter", "data-query", "react-query", "json-search", "typescript-query", "debounce-query" ], "author": "Md Azadur", "license": "MIT", "devDependencies": { "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", "@size-limit/preset-small-lib": "^11.2.0", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^14.3.1", "@testing-library/react-hooks": "^8.0.1", "@types/jest": "^29.5.14", "@types/react": "^18.3.18", "eslint": "^8.57.0", "husky": "^8.0.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "prettier": "^3.2.5", "react": "^18.2.0", "rollup": "^4.12.0", "rollup-plugin-filesize": "^10.0.0", "size-limit": "^11.2.0", "ts-jest": "^29.2.6", "typescript": "^5.3.3" }, "peerDependencies": { "react": ">=16.8.0" }, "peerDependenciesMeta": { "react": { "optional": true } }, "size-limit": [ { "path": "dist/index.js", "limit": "500B" }, { "path": "dist/hooks/index.js", "limit": "700B" } ], "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/iazadur/fast-json-query.git" }, "bugs": { "url": "https://github.com/iazadur/fast-json-query/issues" }, "homepage": "https://github.com/iazadur/fast-json-query#readme" }