{
  "name": "vuex-map-fields",
  "version": "1.4.1",
  "description": "Enable two-way data binding for form fields saved in a Vuex store",
  "keywords": [
    "vue",
    "vuex",
    "two-way data binding"
  ],
  "author": "Markus Oberlehner",
  "homepage": "https://github.com/maoberlehner/vuex-map-fields",
  "license": "MIT",
  "scripts": {
    "scripts:umd": "rollup --config --output.format umd --name vuex-map-fields --output.file dist/index.js src/index.js",
    "scripts:es": "rollup --config --output.format es --name vuex-map-fields --output.file dist/index.esm.js src/index.js",
    "scripts:minify": "uglifyjs --compress --mangle --comments --output dist/index.min.js dist/index.js && uglifyjs --compress --mangle --comments --output dist/index.esm.min.js dist/index.esm.js",
    "scripts": "yarn run scripts:umd && yarn run scripts:es && yarn run scripts:minify",
    "build": "yarn run scripts",
    "fake-publish": "yarn run build && sh test/utils/fake-publish.sh",
    "lint:scripts": "yarn run fake-publish && eslint --ignore-path .gitignore .",
    "lint:scripts-md": "eslint --config .eslintrc-md.json --ext md --ignore-path .gitignore .",
    "lint": "yarn run lint:scripts && yarn run lint:scripts-md",
    "coveralls": "yarn run test:coverage && cat coverage/lcov.info | coveralls",
    "test:unit": "jest src",
    "test:integration": "yarn run fake-publish && jest test",
    "test:coverage": "yarn run fake-publish && jest --coverage --maxWorkers=4",
    "test": "yarn run test:unit && yarn run test:integration",
    "prepublishOnly": "yarn run lint && yarn test && yarn run build"
  },
  "devDependencies": {
    "@avalanche/eslint-config": "^4.0.0",
    "@babel/core": "^7.11.6",
    "@babel/preset-env": "^7.11.5",
    "@vue/test-utils": "1.1.0",
    "babel-core": "^7.0.0-bridge.0",
    "babel-jest": "^26.3.0",
    "coveralls": "^3.1.0",
    "eslint": "^7.10.0",
    "eslint-plugin-compat": "^3.8.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-markdown": "^1.0.2",
    "jest": "^26.4.2",
    "rollup": "^2.28.2",
    "rollup-plugin-babel": "^4.4.0",
    "uglify-es": "^3.3.9",
    "vue": "^2.6.12",
    "vue-template-compiler": "^2.6.12",
    "vuex": "^3.5.1"
  },
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/maoberlehner/vuex-map-fields"
  },
  "bugs": {
    "url": "https://github.com/maoberlehner/vuex-map-fields/issues"
  },
  "browserslist": [
    "> 0.5%",
    "not ie <= 10",
    "not op_mini all"
  ],
  "jest": {
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/package/"
    ]
  }
}
