{
  "name": "marduk",
  "version": "1.3.0",
  "description": "Make babel usable with convention over configuration",
  "main": "./lib/index.js",
  "preferGlobal": true,
  "bin": {
    "marduk": "./lib/bin/cli.js"
  },
  "config": {
    "out": "lib",
    "in": "es6"
  },
  "scripts": {
    "compile": "babel --source-maps inline --out-dir=$npm_package_config_out $npm_package_config_in",
    "compile:watch": "babel --watch --source-maps inline --out-dir=$npm_package_config_out $npm_package_config_in",
    "test": "./node_modules/mocha/bin/mocha --compilers js:babel-register --check-leaks -t 20000",
    "test:watch": "./node_modules/mocha/bin/mocha  --compilers js:babel-register --check-leaks -t 20000 --watch --growl ./test/*.js",
    "clean": "rm -rf $npm_package_config_out",
    "precompile:watch": "npm run clean",
    "precompile": "npm run clean",
    "preversion": "npm run compile",
    "postpublish": "git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ondreian/marduk.git"
  },
  "keywords": [
    "babel",
    "configuration",
    "quickstart",
    "generator"
  ],
  "author": "Benjamin Clos",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/ondreian/marduk/issues"
  },
  "homepage": "https://github.com/ondreian/marduk#readme",
  "dependencies": {
    "bluebird": "^3.3.4",
    "colors": "^1.1.2",
    "commander": "^2.9.0",
    "fs-extra": "^0.26.7",
    "glob": "^7.0.5",
    "handlebars": "^4.0.5",
    "home-dir": "^1.0.0",
    "which": "^1.2.4"
  },
  "devDependencies": {
    "babel-preset-es2015": "^6.6.0",
    "babel-register": "^6.7.2",
    "chai": "^3.5.0",
    "mocha": "^2.4.5"
  }
}
