{
	"name": "command-promise",
	"version": "2.0.1",
	"description": "Promise wrapper for child_process.exec.",

	"license": "MIT",

	"keywords":
	[
		"promise", "stream",
		"child_process", "exec", "spawn",
		"pipe", "duplex",
		"process", "shell"
	],

	"author":
	{
		"name":  "StreetStrider",
		"email": "teamfortresslife@gmail.com"
	},
	"homepage":            "https://github.com/StreetStrider/command-promise",
	"repository": { "url": "https://github.com/StreetStrider/command-promise.git", "type": "git" },
	"bugs":       { "url": "https://github.com/StreetStrider/command-promise/issues" },

	"main": "src/Command.js",
	"scripts":
	{
		"test": "mocha --check-leaks --full-trace --recursive test/",

		"bundle-deps": "npm run brw; npm run min",
		"brw": "browserify --node --standalone deps src/deps/index.js --outfile src/.bundle.js",
		"min": "uglifyjs --compress -- src/.bundle.js > src/deps.js; rm src/.bundle.js",

		"clean": "rm -f src/.bundle.js src/deps.js"
	},

	"dependencies":
	{
		"promise":  "~6",
		"duplexer": "^0.1.1",

		"lodash.flattendeep":   "^3.0.2",
		"lodash.isplainobject": "^3.1.0",
		"lodash.assign":        "^3.2.0"
	},
	"devDependencies":
	{
		"mocha": "~2",
		"stream-to-promise": "^1.0.4",

		"browserify": "~6",
		"uglify-js": "~2"
	},
	"optionalDependencies":
	{
		"q": "~1",
		"bluebird": "~2"
	}
}
