{
  "name": "bro-fs",
  "version": "0.6.0",
  "description": "Promise-based HTML5 Filesystem API compatible with Node.js fs module",
  "author": {
    "name": "Vitaliy Potapov",
    "email": "noginsk@rambler.ru"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/vitalets/bro-fs.git"
  },
  "bugs": {
    "url": "https://github.com/vitalets/bro-fs/issues"
  },
  "main": "dist/bro-fs.js",
  "scripts": {
    "dev": "karma start",
    "serve": "http-server docs -c-1",
    "code": "npm run eslint",
    "eslint": "eslint src test karma.*.js",
    "test": "karma start --single-run",
    "test-dist": "SRC_PATH=. npm t",
    "test-sauce": "karma start karma-sauce.conf.js",
    "test-runtyper": "RUNTYPER=1 webpack && SRC_PATH=./dist-runtyper/bro-fs npm t",
    "build-dev": "webpack",
    "build-min": "NODE_ENV=production webpack -p",
    "build": "run-s build-dev build-min",
    "ci": "npm run code && npm run build && SRC_PATH=. npm run test-sauce",
    "docs": "rimraf 'docs/!(demo)' && jsdoc -c ./jsdoc.json",
    "demo": "cp dist/bro-fs.js docs/demo/bro-fs.js",
    "commit-docs": "git add -A docs && (git diff-index --quiet HEAD -- docs || git commit -m'docs' --no-verify)",
    "add-contribs": "git-authors-cli",
    "prerelease": "run-s code test build test-dist test-runtyper docs demo commit-docs",
    "postrelease": "git push --follow-tags --no-verify",
    "release": "npm version $VER && npm publish",
    "release-patch": "VER=patch npm run release",
    "release-minor": "VER=minor npm run release"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run code",
      "pre-push": "npm run code && npm test"
    }
  },
  "devDependencies": {
    "@babel/core": "^7.6.0",
    "@babel/preset-env": "^7.6.0",
    "babel-loader": "^8.0.6",
    "babel-plugin-runtyper": "^0.4.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "chai-shallow-deep-equal": "^1.4.6",
    "docdash": "^1.1.1",
    "eslint": "^6.4.0",
    "eslint-plugin-mocha": "^6.1.1",
    "git-authors-cli": "^1.0.18",
    "husky": "^3.0.5",
    "jsdoc": "^3.6.3",
    "karma": "^4.3.0",
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-sauce-launcher": "^2.0.2",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^4.0.2",
    "marked": "^0.7.0",
    "mocha": "^6.2.0",
    "npm-run-all": "^4.1.3",
    "puppeteer": "^1.20.0",
    "rimraf": "^3.0.0",
    "webpack": "^4.40.2",
    "webpack-cli": "^3.3.9"
  },
  "keywords": [
    "fs",
    "filesystem",
    "html5-fs",
    "html5-filesystem",
    "html5-filesystem-api",
    "browser-fs",
    "browser-filesystem",
    "web-fs",
    "web-filesystem"
  ],
  "license": "MIT",
  "contributors": [
    "vitalets <vitalets@yandex-team.ru>",
    "LI, Qi <goodlq11@gmail.com>"
  ]
}
