{
	"name": "@jdpnielsen/contextual-error",
	"version": "1.2.3",
	"description": "Extended error supporting cause and contextual enhancements",
	"main": "build/main/index.js",
	"browser": "build/main/index.js",
	"typings": "build/main/index.d.ts",
	"module": "build/module/index.js",
	"repository": "https://github.com/jdpnielsen/contextual-error",
	"license": "MIT",
	"keywords": [
		"error",
		"exception",
		"extend",
		"typescript"
	],
	"scripts": {
		"describe": "npm-scripts-info",
		"build": "run-s clean && run-p build:*",
		"build:main": "tsc -p tsconfig.json",
		"build:module": "tsc -p tsconfig.module.json",
		"fix": "eslint --fix \"src/**/*.ts\"",
		"test": "run-s build test:*",
		"test:lint": "eslint \"src/**/*.ts\"",
		"test:unit": "nyc --silent ava",
		"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch --verbose\"",
		"cov": "run-s build test:unit cov:html && open-cli coverage/index.html",
		"cov:html": "nyc report --reporter=html",
		"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
		"version": "standard-version",
		"clean": "rimraf ./build",
		"prepare-release": "run-s clean test cov:check version"
	},
	"scripts-info": {
		"info": "Display information about the package scripts",
		"build": "Clean and rebuild the project",
		"fix": "Try to automatically fix any linting problems",
		"test": "Lint and unit test the project",
		"watch": "Watch and rebuild the project on save, then rerun relevant tests",
		"cov": "Rebuild, run tests, then create and open the coverage report",
		"version": "Bump package.json version, update CHANGELOG.md, tag release",
		"prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
	},
	"engines": {
		"node": ">=14.3"
	},
	"devDependencies": {
		"@bitjson/npm-scripts-info": "^1.0.0",
		"@istanbuljs/nyc-config-typescript": "^1.0.1",
		"@types/node": "^14.0.24",
		"@typescript-eslint/eslint-plugin": "^3.7.0",
		"@typescript-eslint/parser": "^3.7.0",
		"ava": "^3.10.1",
		"cz-conventional-changelog": "^3.2.0",
		"eslint": "^7.5.0",
		"npm-run-all": "^4.1.5",
		"nyc": "^15.1.0",
		"open-cli": "^6.0.1",
		"rimraf": "^3.0.2",
		"standard-version": "^8.0.2",
		"ts-node": "^8.10.2",
		"typescript": "^3.9.7"
	},
	"ava": {
		"failFast": true,
		"files": [
			"build/main/**/*.spec.js"
		]
	},
	"config": {
		"commitizen": {
			"path": "cz-conventional-changelog"
		}
	},
	"nyc": {
		"extends": "@istanbuljs/nyc-config-typescript",
		"exclude": [
			"**/*.spec.js"
		]
	}
}
