{
  "name": "vue-json-component",
  "version": "0.4.1",
  "description": "A VueJS JSON Tree View with no dependencies and module builds.",
  "keywords": [
    "vue",
    "vuejs",
    "vue-component",
    "JSON",
    "tree",
    "expand"
  ],
  "author": {
    "name": "Tyler Krupicka",
    "email": "npm@tylerkrupicka.com",
    "url": "tylerkrupicka.com"
  },
  "main": "dist/index.js",
  "module": "dist/index.module.js",
  "unpkg": "dist/index.umd.js",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/tylerkrupicka/vue-json-component.git"
  },
  "scripts": {
    "serve": "vue-cli-service serve harness/main.ts",
    "build": "bili",
    "build:docs": "vue-cli-service build --name JSONView --dest docs harness/main.ts",
    "deploy:docs": "yarn build:docs && gh-pages -d docs",
    "lint": "vue-cli-service lint"
  },
  "files": [
    "/dist",
    "/src"
  ],
  "devDependencies": {
    "@babel/core": "^7.4.0",
    "@typescript-eslint/eslint-plugin": "^2.15.0",
    "@typescript-eslint/parser": "^2.15.0",
    "@vue/babel-preset-app": "^4.1.2",
    "@vue/cli-plugin-babel": "^4.1.2",
    "@vue/cli-plugin-eslint": "^4.1.2",
    "@vue/cli-plugin-typescript": "^4.1.2",
    "@vue/cli-plugin-unit-jest": "^4.1.2",
    "@vue/cli-service": "^4.1.2",
    "@vue/eslint-config-prettier": "^6.0.0",
    "@vue/eslint-config-typescript": "^5.0.1",
    "@vue/test-utils": "1.0.0-beta.29",
    "autoprefixer": "^9.5.0",
    "babel-core": "7.0.0-bridge.0",
    "babel-eslint": "^10.0.1",
    "babel-loader": "^8.0.6",
    "bili": "^4.7.1",
    "eslint": "^5.8.0",
    "eslint-plugin-prettier": "^3.1.2",
    "eslint-plugin-vue": "^5.0.0",
    "fibers": "^3.1.1",
    "gh-pages": "^2.2.0",
    "lint-staged": "^8.1.4",
    "node-sass": "^4.11.0",
    "postcss": "^7.0.14",
    "rollup": "^1.7.2",
    "rollup-plugin-babel": "^4.3.2",
    "rollup-plugin-typescript2": "^0.20.1",
    "rollup-plugin-vue": "4.3.2",
    "sass": "^1.17.2",
    "sass-loader": "^7.1.0",
    "typescript": "^3.2.1",
    "vue": "^2.6.11",
    "vue-template-compiler": "^2.6.11"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/essential",
      "@vue/prettier",
      "@vue/typescript"
    ],
    "rules": {
      "no-console": "off"
    },
    "parserOptions": {
      "parser": "@typescript-eslint/parser"
    }
  },
  "postcss": {
    "plugins": {
      "autoprefixer": {}
    }
  },
  "prettier": {
    "singleQuote": true
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 8"
  ],
  "jest": {
    "moduleFileExtensions": [
      "js",
      "jsx",
      "json",
      "vue",
      "ts",
      "tsx"
    ],
    "transform": {
      "^.+\\.vue$": "vue-jest",
      ".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
      "^.+\\.tsx?$": "ts-jest"
    },
    "transformIgnorePatterns": [
      "/node_modules/"
    ],
    "moduleNameMapper": {
      "^@/(.*)$": "<rootDir>/src/$1"
    },
    "snapshotSerializers": [
      "jest-serializer-vue"
    ],
    "testMatch": [
      "**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
    ],
    "testURL": "http://localhost/",
    "globals": {
      "ts-jest": {
        "babelConfig": true
      }
    }
  },
  "gitHooks": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
    "*.{js,vue}": [
      "vue-cli-service lint",
      "git add"
    ]
  }
}
