{
	"name": "nani",
	"version": "3.2.3",
	"description": "Better error handling for Node",
	"keywords": [
		"error",
		"verror"
	],
	"author": "Steve Ripberger",
	"license": "MIT",
	"repository": "github:sripberger/nani",
	"engines": {
		"node": ">=8.6",
		"npm": ">=5.3"
	},
	"files": [
		"dist/lib",
		"dist/types"
	],
	"scripts": {
		"lint": "eslint . --ext .ts",
		"lintf": "eslint . --ext .ts --fix",
		"prebuild": "rm -rf dist",
		"build": "tsc && tsc --project tsconfig-types.json",
		"test": "mocha",
		"test:unit": "mocha test/unit",
		"test:integration": "mocha test/integration",
		"test:build": "npm run build && mocha --config .mocharc-dist.yaml dist/test",
		"preversion": "npm run lint && npm run test:build",
		"prepublishOnly": "git push && git push --tags"
	},
	"main": "dist/lib/index.js",
	"types": "dist/types/index.d.ts",
	"devDependencies": {
		"@batterii/eslint-config-vurvey": "^0.3.6",
		"@types/chai": "^4.2.9",
		"@types/lodash": "^4.14.149",
		"@types/mocha": "^9.1.1",
		"@types/node": "^16.11.33",
		"@types/sinon": "^10.0.11",
		"@types/sinon-chai": "^3.2.3",
		"@typescript-eslint/eslint-plugin": "^5.21.0",
		"@typescript-eslint/parser": "^5.21.0",
		"chai": "^4.2.0",
		"eslint": "^7.32.0",
		"mocha": "^9.2.2",
		"sinon": "^10.0.0",
		"sinon-chai": "^3.5.0",
		"source-map-support": "^0.5.16",
		"ts-node": "^10.7.0",
		"typescript": "^4.6.4"
	},
	"dependencies": {
		"lodash": "^4.17.15"
	}
}
