{
	"name": "hord",
	"version": "0.7.10",
	"description": "A data storage and manipulation library for javascript",
	"type": "module",
	"keywords": [
		"collections",
		"indexeddb",
		"dexie",
		"mongo",
		"mongodb"
	],
	"license": "MIT",
	"author": {
		"name": "Darren Paul Wright",
		"email": "Darren@DarrenPaulWright.com",
		"url": "https://www.darrenpaulwright.com"
	},
	"homepage": "https://github.com/DarrenPaulWright/hord#readme",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/DarrenPaulWright/hord.git"
	},
	"bugs": {
		"url": "https://github.com/DarrenPaulWright/hord/issues"
	},
	"main": "index.js",
	"types": "types/index.d.ts",
	"files": [
		"/types",
		"/src"
	],
	"sideEffects": false,
	"badges": {
		"npm": {
			"image": "https://img.shields.io/npm/v/hord.svg",
			"url": "https://npmjs.com/package/hord"
		},
		"build": {
			"base": "https://travis-ci.org/DarrenPaulWright/",
			"image": "hord.svg?branch=master",
			"url": "hord"
		},
		"coverage": {
			"base": "https://coveralls.io/",
			"image": "repos/github/DarrenPaulWright/hord/badge.svg?branch=master",
			"url": "github/DarrenPaulWright/hord?branch=master"
		},
		"deps": {
			"image": "https://david-dm.org/DarrenPaulWright/hord.svg",
			"url": "https://david-dm.org/DarrenPaulWright/hord"
		},
		"size": {
			"base": "https://packagephobia.now.sh/",
			"image": "badge?p=hord",
			"url": "result?p=hord"
		},
		"vulnerabilities": {
			"base": "https://snyk.io/test/github/DarrenPaulWright/hord",
			"image": "/badge.svg?targetFile=package.json",
			"url": "?targetFile=package.json"
		},
		"license": {
			"image": "https://img.shields.io/github/license/DarrenPaulWright/hord.svg",
			"url": "https://npmjs.com/package/hord/LICENSE.md"
		}
	},
	"scripts": {
		"test": "",
		"test-watch": "",
		"bench": "",
		"preversion": "npm test && npm run docs && git add --all && git diff HEAD --quiet || git commit -m \"Updating docs\"",
		"postversion": "npm publish",
		"postpublish": "git push --follow-tags",
		"pre-clean": "rm -rf node_modules && del /f package-lock.json",
		"clean": "npm run pre-clean && npm install && npm audit fix",
		"update": "ncu -u && git diff --quiet || npm install && npm audit fix",
		"update-clean": "npm run pre-clean && npm run update",
		"update-commit": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\"",
		"update-patch": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\" && npm version patch",
		"docs:readme": "jsdoc2md ./index.js src/**/*.js > README.md -t node_modules/dmd-readable/overview.hbs --plugin dmd-readable/overview-plugin.js",
		"docs:list": "jsdoc2md src/List.js > docs/List.md -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable",
		"docs:schema": "jsdoc2md src/Schema/Schema.js > docs/Schema.md -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable",
		"docs:model": "jsdoc2md src/Model.js > docs/Model.md -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable",
		"docs:collection": "jsdoc2md src/Collection.js > docs/Collection.md -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable",
		"docs:compare": "jsdoc2md src/utility/compare.js > docs/compare.md -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable",
		"docs:types": "rm -rf types && tsc",
		"docs": "run-p docs:*"
	},
	"dependencies": {
		"object-agent": "^1.6.1",
		"on-change": "^4.0.2",
		"type-enforcer": "^1.2.5",
		"type-enforcer-ui": "^1.2.1"
	},
	"devDependencies": {
		"display-value": "^2.2.0",
		"dmd-readable": "^1.2.4",
		"jsdoc-to-markdown": "^8.0.0",
		"npm-run-all": "^4.1.5",
		"type-enforcer-test-helper": "^1.3.10",
		"typescript": "^5.2.2"
	}
}
