{
	"name": "@nooma-tech/degit",
	"version": "1.5.1",
	"engines": {
		"node": ">=22.0.0"
	},
	"description": "Straightforward project scaffolding",
	"main": "dist/index.js",
	"bin": {
		"degit": "degit"
	},
	"scripts": {
		"lint": "eslint --color --ignore-path .gitignore .",
		"dev": "npm run build -- --watch",
		"build": "rollup -c",
		"test": "mocha",
		"pretest": "npm run build",
		"prepublishOnly": "npm test"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Nooma-Tech/degit.git"
	},
	"keywords": [
		"scaffolding",
		"template",
		"git"
	],
	"author": "Rich Harris",
	"contributors": [
		"Nooma Tech",
		"Jaeyoung Yun (https://github.com/JAE0Y2N) — security disclosure of shell injection in src argument (1.5.0)"
	],
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/Nooma-Tech/degit/issues"
	},
	"homepage": "https://github.com/Nooma-Tech/degit#readme",
	"publishConfig": {
		"access": "public",
		"registry": "https://registry.npmjs.org/"
	},
	"dependencies": {
		"chalk": "4.1.2",
		"enquirer": "2.4.1",
		"fuzzysearch": "1.0.3",
		"home-or-tmp": "3.0.0",
		"https-proxy-agent": "5.0.1",
		"mri": "1.2.0",
		"sander": "0.6.0",
		"shell-quote": "1.8.3",
		"source-map-support": "0.5.21",
		"tar": "7.5.11",
		"tiny-glob": "0.2.9"
	},
	"devDependencies": {
		"@rollup/plugin-commonjs": "18.1.0",
		"@rollup/plugin-node-resolve": "11.2.1",
		"eslint": "^8.57.0",
		"eslint-config-prettier": "^9.1.0",
		"eslint-plugin-import": "^2.29.1",
		"husky": "6.0.0",
		"lint-staged": "10.5.4",
		"mocha": "11.3.0",
		"prettier": "^3.2.5",
		"rimraf": "3.0.2",
		"rollup": "^2.79.2",
		"rollup-plugin-commonjs": "10.1.0"
	},
	"files": [
		"help.md",
		"dist",
		"degit"
	],
	"husky": {
		"hooks": {
			"pre-commit": "lint-staged"
		}
	},
	"lint-staged": {
		"*.{js}": [
			"eslint --fix",
			"git add"
		],
		"*.{js, json, yml, md}": [
			"prettier --write",
			"git add"
		]
	},
	"overrides": {
		"serialize-javascript": "7.0.5"
	}
}
