{
	"name": "@compute.ts/boolean",
	"version": "2.0.3",
	"author": {
		"email": "mathieu.berthellemy@gmail.com",
		"name": "Mathieu BERTHELLEMY",
		"url": "https://berthellemy.com"
	},
	"license": "MIT",
	"keywords": [
		"incremental computation",
		"incremental engine",
		"incremental calculation",
		"incremental",
		"computation",
		"engine",
		"calculation",
		"mathematics",
		"graph",
		"dag",
		"directed acyclic graph",
		"affectation",
		"evaluation",
		"affect",
		"eval"
	],
	"description": "Provide boolean operators for the computeTS package",
	"publishConfig": {
		"access": "public"
	},
	"main": "./lib/index.js",
	"typings": "./lib/index.d.ts",
	"files": [
		"lib"
	],
	"scripts": {
		"clean": "rm -rf artifacts && rm -rf node_modules && rm -rf lib",
		"test": "ts-mocha -p src/tsconfig.json src/**/*.spec.ts",
		"coverage": "nyc --all --exclude recipes --exclude artifacts --exclude lib --exclude **/index.ts --exclude **/*.spec.ts --temp-dir ./artifacts/.nyc_output --report-dir ./artifacts/coverage --reporter-dir artifacts --reporter=lcov --reporter=text-summary --reporter=json npm test",
		"uglify": "uglifyjs-folder lib -eo lib -x .js",
		"build": "tsc --project ./src/tsconfig.json && npm run uglify",
		"prepublishOnly": "npm run test && npm run build",
		"release:patch": "npm version patch && npm publish",
		"cloc": "cloc ./src --exclude-dir specs"
	},
	"dependencies": {
		"@compute.ts/core": "^2.0.0"
	},
	"devDependencies": {
		"cloc": "^2.8.0",
		"@types/chai": "^4.2.12",
		"@types/mocha": "^8.0.3",
		"chai": "^4.2.0",
		"mocha": "^7.0.0",
		"nyc": "^15.1.0",
		"ts-mocha": "^7.0.0",
		"ts-node": "^9.0.0",
		"typescript": "^3.0.0",
		"uglifyjs-folder": "^1.0.0"
	}
}
