{
    "name": "kuroshiro-analyzer-mecab",
    "version": "1.0.1",
    "description": "mecab morphological analyzer for kuroshiro",
    "main": "lib/index.js",
    "module": "src/index.js",
    "scripts": {
        "lint": "eslint src test",
        "lint:fix": "eslint --fix src test --ext .js",
        "jest": "jest --verbose",
        "jest:watch": "npm run jest -- --watch",
        "test": "npm run lint && npm run jest",
        "clean": "rimraf lib",
        "build": "npm run build:cjs",
        "build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib"
    },
    "keywords": [
        "kuroshiro",
        "morphology",
        "analyzer",
        "mecab",
        "japanese",
        "language",
        "kanji",
        "hiragana",
        "katakana",
        "romaji"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/hexenq/kuroshiro-analyzer-mecab.git"
    },
    "author": "Hexen Qi",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/hexenq/kuroshiro-analyzer-mecab/issues"
    },
    "homepage": "https://github.com/hexenq/kuroshiro-analyzer-mecab",
    "dependencies": {
        "mecab-async": "^0.1.2"
    },
    "devDependencies": {
        "babel-cli": "^6.26.0",
        "babel-core": "^6.26.0",
        "babel-eslint": "^8.2.3",
        "babel-jest": "^22.4.4",
        "babel-plugin-add-module-exports": "^0.2.1",
        "babel-plugin-transform-runtime": "^6.23.0",
        "babel-preset-env": "^1.6.1",
        "babelify": "^8.0.0",
        "browserify": "^16.2.2",
        "coveralls": "^3.0.1",
        "cross-env": "^5.1.5",
        "eslint": "^4.19.1",
        "eslint-config-airbnb-base": "^12.1.0",
        "eslint-plugin-import": "^2.12.0",
        "jest": "^22.4.4",
        "uglifyify": "^5.0.0"
    },
    "browserify": {
        "transform": [
            [
                "babelify"
            ]
        ]
    },
    "jest": {
        "transform": {
            "^.+\\.jsx?$": "babel-jest"
        },
        "testRegex": "(/test/.*|(\\.|/)(test|spec))\\.jsx?$"
    }
}