{
  "name": "@bouzuya/kraken",
  "description": "A blog data generator for blog.bouzuya.net.",
  "version": "4.0.2",
  "author": {
    "name": "bouzuya",
    "email": "m@bouzuya.net",
    "url": "http://bouzuya.net"
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": 10
          }
        }
      ],
      "power-assert"
    ]
  },
  "bin": {
    "kraken": "./bin/kraken"
  },
  "bugs": {
    "url": "https://github.com/bouzuya/kraken/issues"
  },
  "dependencies": {
    "commander-b": "1.0.0",
    "finalhandler": "^1.1.2",
    "fs-extra": "^9.0.0",
    "jekyll-markdown-parser": "^4.0.0",
    "kuromoji": "^0.1.2",
    "marked": "^1.0.0",
    "serve-static": "^1.14.1",
    "time-keeper": "^2.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.0",
    "@babel/preset-env": "^7.9.5",
    "@types/finalhandler": "^1.1.0",
    "@types/fs-extra": "^8.1.0",
    "@types/marked": "^0.7.4",
    "@types/node": "^12.12.37",
    "@types/power-assert": "^1.5.3",
    "@types/serve-static": "^1.13.3",
    "@types/sinon": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^2.29.0",
    "@typescript-eslint/parser": "^2.29.0",
    "babel-preset-power-assert": "^3.0.0",
    "beater": "^9.0.1",
    "beater-helpers": "^2.0.0",
    "chokidar-cli": "^2.1.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.11.0",
    "npm-run-all": "^4.1.5",
    "power-assert": "^1.6.1",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "sinon": "^9.0.2",
    "typescript": "^3.8.3"
  },
  "directories": {
    "doc": "doc"
  },
  "files": [
    "bin",
    "lib"
  ],
  "homepage": "https://github.com/bouzuya/kraken",
  "keywords": [],
  "license": "MIT",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/bouzuya/kraken.git"
  },
  "scripts": {
    "build": "npm-run-all -s build:format build:lint build:es2015 build:es5 build:lib",
    "build:es2015": "tsc",
    "build:es5": "babel --out-dir .tmp/es5/ --source-maps inline .tmp/es2015/",
    "build:format": "prettier --check \"{src,test}/**/*.ts\"",
    "build:lib": "babel --copy-files --no-comments --out-dir ./lib/ .tmp/es2015/src/",
    "build:lint": "eslint \"{src,test}/**/*.ts\"",
    "clean": "rimraf .tmp lib",
    "format": "prettier --write \"{src,test}/**/*.ts\"",
    "prepare": "npm-run-all -s \"clean\" \"build\"",
    "test": "node .tmp/es5/test/index.js",
    "watch": "npm-run-all -p \"watch:*\"",
    "watch:es2015": "npm run \"build:es2015\" -- --watch",
    "watch:es5": "npm run \"build:es5\" -- --watch",
    "watch:lib": "npm run \"build:lib\" -- --watch",
    "watch:test": "chokidar \".tmp/es2015/**/*.js\" --command \"npm test\""
  }
}
