{
  "name": "vue-breakpoint",
  "version": "2.1.0",
  "description": "A set of layout components for Vue.js",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "lib/src/",
  "files": [
    "dist",
    "lib",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "clean": "rm -Rf lib dist",
    "pretsc": "npm run clean",
    "tsc": "tsc",
    "prebuild": "npm run tsc",
    "build": "rollup -c ./rollup.config.js",
    "prepublishOnly": "npm run build",
    "release": "standard-version",
    "postrelease": "git push --follow-tags origin master && npm publish",
    "test:quick": "jest",
    "test:verbose": "jest --verbose",
    "test:coverage": "jest --coverage --verbose",
    "test": "npm run test:verbose"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alexsasharegan/vue-layout.git"
  },
  "keywords": [
    "vue",
    "vuejs",
    "layout"
  ],
  "author": "Alex Regan",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/alexsasharegan/vue-layout/issues"
  },
  "homepage": "https://github.com/alexsasharegan/vue-layout#readme",
  "peerDependencies": {
    "vue": ">=2.5.0"
  },
  "devDependencies": {
    "@types/jest": "^23.3.10",
    "cross-env": "^5.2.0",
    "jest": "^23.6.0",
    "rollup": "^0.67.4",
    "standard-version": "^4.4.0",
    "ts-jest": "^23.10.5",
    "typescript": "^3.2.2",
    "vue": "^2.5.21"
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "transform": {
      "\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testMatch": [
      "**/__tests__/?(*.)(spec|test).(ts|js)",
      "**/?(*.)(spec|test).(js|ts)"
    ],
    "collectCoverageFrom": [
      "src/**/*.{js,ts}",
      "!src/**/*.d.ts"
    ],
    "collectCoverage": true
  },
  "dependencies": {}
}
