{
  "name": "vuejs-local-storage",
  "version": "2.2.15",
  "description": "Vue plugin for work with LocalStorage from Vue context",
  "main": "dist/vue-ls.js",
  "jsnext:main": "src/index.js",
  "unpkg": "dist/vue-ls.min.js",
  "files": [
    "src",
    "dist/*.js"
  ],
  "scripts": {
    "build": "node_modules/.bin/gulp js",
    "test": "node_modules/.bin/nyc node_modules/.bin/ava --tap --esnext",
    "test:browserstack": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_chrome_50,bstack_chrome_57,bstack_ie_9,bstack_ie_11,bstack_edge_13,bstack_edge_14,bstack_firefox_40,bstack_firefox_52,bstack_safari_8,bstack_safari_10",
    "test:browserstack:chrome": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_chrome_50,bstack_chrome_57",
    "test:browserstack:ie": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_ie_9,bstack_ie_11",
    "test:browserstack:edge": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_edge_13,bstack_edge_14",
    "test:browserstack:firefox": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_firefox_40,bstack_firefox_52",
    "test:browserstack:safari": "RUN_ON_BSTACK=true BSTACK_LOCAL=true node_modules/.bin/gulp test --env bstack_safari_8,bstack_safari_10",
    "test:phantomjs": "RUN_ON_BSTACK=false node_modules/.bin/gulp test --env phantomjs",
    "test:e2e": "RUN_ON_BSTACK=false node_modules/.bin/gulp test --env chrome",
    "test:unit": "node_modules/.bin/karma start build/karma.dev.config.js",
    "test:sauce": "npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2 && npm run sauce -- 3 && npm run sauce -- 4 && npm run sauce -- 5",
    "sauce": "node_modules/.bin/karma start build/karma.sauce.config.js",
    "lint": "node_modules/.bin/eslint ./",
    "hint": "node_modules/.bin/jshint",
    "report": "npm test && node_modules/.bin/nyc report --reporter=html",
    "coveralls": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
    "codecov": "./node_modules/.bin/nyc report --reporter=lcovonly && codecov -t $CODECOV_TOKEN",
    "patch": "npm version patch --no-git-tag-version && git add package.json && git commit -m 'update version' && git push origin master && bower version patch && git push origin master --follow-tags && npm publish",
    "minor": "npm version minor --no-git-tag-version && git add package.json && git commit -m 'update version' && git push origin master && bower version minor && git push origin master --follow-tags && npm publish",
    "major": "npm version major --no-git-tag-version && git add package.json && git commit -m 'update version' && git push origin master && bower version major && git push origin master --follow-tags && npm publish"
  },
  "dependencies": {},
  "keywords": [
    "localstorage",
    "local-storage",
    "vue-localstorage",
    "vuejs-localstorage",
    "vue-local-storage",
    "vuejs-local-storage",
    "vue-ls",
    "vue",
    "vuejs",
    "vue-plugin",
    "watch",
    "es6-modules"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/RobinCK/vue-ls.git"
  },
  "author": "Igor Ognichenko <ognichenko.igor@gmail.com>",
  "bugs": {
    "url": "https://github.com/RobinCK/vue-ls/issues"
  },
  "homepage": "https://github.com/RobinCK/vue-ls#readme",
  "license": "MIT",
  "devDependencies": {
    "ava": "jamestalmage/ava#karma-ava",
    "babel-core": "^6.24.0",
    "babel-loader": "^7.0.0",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
    "babel-plugin-transform-object-assign": "^6.22.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-es2015": "^6.22.0",
    "babel-register": "^6.23.0",
    "browserstack-automate": "https://github.com/browserstack/browserstack-integration-nodejs.git#master",
    "chromedriver": "^2.28.0",
    "connect": "^3.6.0",
    "coveralls": "^2.11.16",
    "eslint": "^3.16.1",
    "get-gulp-args": "^0.0.1",
    "gulp": "github:gulpjs/gulp#4.0",
    "gulp-nightwatch": "^0.3.2",
    "gulp-rename": "^1.2.2",
    "gulp-rollup": "^2.11.0",
    "gulp-sourcemaps": "^2.4.1",
    "gulp-uglify": "^2.0.1",
    "gulp-util": "^3.0.8",
    "jasmine": "^2.5.3",
    "jasmine-core": "^2.5.2",
    "jshint": "^2.9.4",
    "karma": "^1.5.0",
    "karma-chrome-launcher": "^2.0.0",
    "karma-jasmine": "^1.1.0",
    "karma-sauce-launcher": "^1.1.0",
    "karma-webpack": "^2.0.3",
    "mock-browser": "^0.92.12",
    "nightwatch": "^0.9.14",
    "nyc": "^10.1.2",
    "phantomjs": "^2.1.7",
    "remove": "^0.1.5",
    "rollup": "^0.41.6",
    "rollup-plugin-babel": "^2.7.1",
    "selenium-server": "^3.3.1",
    "serve-static": "^1.12.1",
    "vue": "^2.2.4",
    "webpack": "^2.3.1"
  },
  "semistandard": {
    "ignore": [
      "node_modules",
      "bower_components",
      "build",
      "dist",
      "test"
    ]
  },
  "ava": {
    "babel": {
      "babelrc": true
    },
    "files": [
      "./test/unit/ava/*.js"
    ],
    "require": [
      "babel-register",
      "babel-polyfill"
    ]
  }
}
