{
  "name": "i18n-patch",
  "version": "1.4.0",
  "description": "Replacing codes for i18n with patterns.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ksoichiro/i18n-patch.git"
  },
  "bugs": {
    "url": "https://github.com/ksoichiro/i18n-patch/issues"
  },
  "main": "lib/index.js",
  "bin": "lib/cli.js",
  "author": {
    "name": "Soichiro Kashima",
    "email": "soichiro.kashima@gmail.com",
    "url": "https://github.com/ksoichiro"
  },
  "engines": {
    "node": ">=0.12.0"
  },
  "keywords": [
    "cli",
    "i18n",
    "internationalization",
    "l10n",
    "localization",
    "translation",
    "replace",
    "pattern"
  ],
  "dependencies": {
    "async": "^2.0.0-rc.3",
    "babel-polyfill": "^6.7.4",
    "camelcase": "^2.1.1",
    "clone": "^1.0.2",
    "fs-extra": "^0.26.7",
    "glob": "^7.0.3",
    "js-yaml": "^3.5.5",
    "lodash": "^4.17.4",
    "meow": "^3.7.0",
    "path-exists": "^2.1.0",
    "pretty-hrtime": "^1.0.2",
    "semver": "^5.3.0",
    "temp": "^0.8.3"
  },
  "devDependencies": {
    "ava": "^0.16.0",
    "babel-cli": "^6.6.5",
    "babel-plugin-transform-runtime": "^6.7.5",
    "babel-preset-es2015": "^6.6.0",
    "coveralls": "^2.11.9",
    "cross-env": "^1.0.7",
    "eslint": "^2.5.3",
    "nyc": "^6.4.0",
    "rimraf": "^2.5.2",
    "sinon": "^1.17.5"
  },
  "babel": {
    "presets": [
      "es2015"
    ],
    "plugins": [
      "transform-runtime"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "ava": {
    "require": [
      "babel-core/register"
    ]
  },
  "files": [
    "src",
    "lib"
  ],
  "scripts": {
    "prepublish": "npm run build",
    "start": "rimraf example/out && node ./lib/cli --config example ja example/src example/out",
    "build": "cross-env BABEL_ENV=production babel src -d lib",
    "watch": "babel src -d lib -s inline -w",
    "test": "eslint src && nyc ava",
    "report": "nyc report --reporter=html"
  },
  "eslintConfig": {
    "env": {
      "es6": true,
      "node": true
    },
    "extends": "eslint:recommended",
    "parserOptions": {
      "sourceType": "module"
    },
    "rules": {
      "indent": [
        "error",
        2
      ],
      "linebreak-style": [
        "error",
        "unix"
      ],
      "quotes": [
        "error",
        "single"
      ],
      "semi": [
        "error",
        "always"
      ],
      "no-console": [
        "off"
      ]
    }
  }
}
