{
	"name": "tad",
	"version": "3.1.1",
	"description": "JavaScript test suite",
	"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
	"keywords": [
		"test",
		"factory",
		"unit",
		"unittest",
		"runner",
		"tests",
		"tdd",
		"testing"
	],
	"bin": {
		"tad": "./bin/tad.js"
	},
	"repository": "medikoo/tad",
	"dependencies": {
		"cli-color": "^2.0.3",
		"d": "^1.0.1",
		"deferred": "^0.7.11",
		"duration": "^0.2.2",
		"es5-ext": "^0.10.62",
		"essentials": "^1.2.0",
		"event-emitter": "^0.3.5",
		"fs2": "^0.2.21",
		"memoizee": "^0.4.15",
		"ncjsm": "^4.3.2",
		"next": "^0.4.1",
		"optimist": "^0.6.1",
		"path2": "^0.1.0",
		"test": "^0.6.0"
	},
	"devDependencies": {
		"@commitlint/cli": "^13.2.1",
		"eslint": "^8.47.0",
		"eslint-config-medikoo": "^4.2.0",
		"git-list-updated": "^1.2.1",
		"github-release-from-cc-changelog": "^2.3.0",
		"husky": "^4.3.8",
		"lint-staged": "^11.2.6",
		"prettier-elastic": "^2.2.1",
		"standard-version": "^9.5.0"
	},
	"husky": {
		"hooks": {
			"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
			"pre-commit": "lint-staged"
		}
	},
	"lint-staged": {
		"*.js": [
			"eslint"
		],
		"*.{css,html,js,json,md,yaml,yml}": [
			"prettier -c"
		]
	},
	"eslintConfig": {
		"extends": "medikoo/node/es5",
		"root": true
	},
	"prettier": {
		"printWidth": 100,
		"tabWidth": 4,
		"overrides": [
			{
				"files": [
					"*.md",
					"*.yml"
				],
				"options": {
					"tabWidth": 2
				}
			}
		]
	},
	"scripts": {
		"commitlint": "commitlint -f HEAD@{15}",
		"lint": "eslint --ignore-path=.gitignore .",
		"lint:updated": "pipe-git-updated --base=main --ext=js -- eslint --ignore-pattern '!*'",
		"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
		"prettier-check:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
		"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
		"prettify:updated": "pipe-git-updated ---base=main -ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
		"test": "node ./bin/tad"
	},
	"engines": {
		"node": ">=0.12"
	},
	"license": "ISC"
}
