{
	"name": "kaaya",
	"description": "DataStore synchronization library",
	"version": "0.1.0",
	"main": "build/kaaya.umd.js",
	"module": "build/kaaya.es.mjs",
	"types": "build/declarations/index.d.ts",
	"sideEffects": false,
	"engines": {
		"node": ">=12.0.0",
		"npm": ">=6.0.0"
	},
	"author": {
		"name": "Kevin destrem",
		"email": "kef1@free.fr"
	},
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git@github.com:kefniark/Kaaya.git"
	},
	"bugs": {
		"url": "https://github.com/kefniark/Kaaya/issues"
	},
	"scripts": {
		"autofix": "run-s autofix:**",
		"autofix:eslint-src": "eslint \"src/**/*.ts\" --fix --quiet",
		"autofix:eslint-tests": "eslint \"tests/**/*.ts\" --fix --quiet",
		"autofix:prettier-src": "prettier --config .prettierrc.yaml --write \"src/**/*.ts\"",
		"autofix:prettier-tests": "prettier --config .prettierrc.yaml --write \"tests/**/*.ts\"",
		"build": "rimraf build && run-s build:**",
		"build:esm": "rollup -c rollup.config.js --file build/kaaya.es.mjs --format esm",
		"build:umd": "rollup -c rollup.config.js --file build/kaaya.umd.js --format umd --name \"Kaaya\"",
		"build:tsc": "tsc --declaration true --emitDeclarationOnly true --outDir ./build/declarations",
		"coverage": "jest --coverage",
		"dev": "rollup -c rollup.dev.config.js --watch",
		"help": "npm-run-help",
		"test": "run-s test:**",
		"test:unittest": "jest",
		"test:lint": "eslint \"src/**/*.ts\"",
		"test:prettier": "prettier --config .prettierrc.yaml --check \"src/**/*.ts\"",
		"update": "npm-check --update",
		"postinstall": "npm run dev-dep",
		"postupdate": "npm run dev-dep",
		"dev-dep": "run-p dev-dep:*",
		"dev-dep:coopa": "path-exists ../coopa && npm link ../coopa || echo 'skip link coopa'"
	},
	"devDependencies": {
		"@types/jest": "^24.0.23",
		"@types/node": "^12.12.8",
		"@typescript-eslint/eslint-plugin": "^2.7.0",
		"@typescript-eslint/parser": "^2.7.0",
		"coopa": "^0.2.2",
		"eslint": "^6.6.0",
		"eslint-config-prettier": "^6.6.0",
		"jest": "^24.9.0",
		"npm-check": "^5.9.0",
		"npm-run-all": "^4.1.5",
		"npm-run-help": "^1.1.0",
		"path-exists-cli": "^1.0.0",
		"prettier": "^1.19.1",
		"rimraf": "^3.0.0",
		"rollup": "^1.27.0",
		"rollup-plugin-commonjs": "^10.1.0",
		"rollup-plugin-filesize": "^6.2.1",
		"rollup-plugin-node-resolve": "^5.2.0",
		"rollup-plugin-serve": "^1.0.1",
		"rollup-plugin-typescript": "^1.0.1",
		"rollup-plugin-version-injector": "^1.1.3",
		"ts-jest": "^24.1.0",
		"ts-loader": "^6.2.1",
		"tslib": "^1.10.0",
		"typescript": "^3.7.2"
	}
}
