{
  "name": "@storasy/core",
  "version": "0.2.3",
  "license": "MIT",
  "author": {
    "name": "Dmitry Filatov",
    "email": "Naboos@yandex.com",
    "url": "https://github.com/Naboska"
  },
  "homepage": "https://github.com/Naboska/storasy",
  "repository": {
    "type": "git",
    "url": "https://github.com/Naboska/storasy"
  },
  "bugs": {
    "url": "https://github.com/Naboska/storasy/issues"
  },
  "keywords": [
    "javascript",
    "async",
    "generator",
    "store"
  ],
  "files": [
    "dist/"
  ],
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build-module": "tsc",
    "build-browser": "webpack",
    "clear": "rimraf dist",
    "build": "yarn clear && yarn build-module && yarn build-browser",
    "test:watch": "jest --watchAll",
    "test:staged": "jest --coverage --bail",
    "lint": "eslint \"./**/*.ts\" --fix"
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/preset-env": "^7.12.10",
    "@babel/preset-typescript": "^7.12.7",
    "@types/jest": "^26.0.24",
    "@typescript-eslint/eslint-plugin": "^4.6.1",
    "@typescript-eslint/parser": "^4.6.1",
    "babel-loader": "^8.2.2",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "eslint": "^7.13.0",
    "eslint-config-prettier": "^6.15.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-prettier": "^3.1.4",
    "husky": "^4.3.0",
    "jest": "^27.0.6",
    "jest-fetch-mock": "^3.0.3",
    "lint-staged": "^10.5.3",
    "prettier": "^2.1.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.4",
    "typescript": "^4.0.5",
    "webpack": "^5.10.2",
    "webpack-cli": "^4.2.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "yarn lint",
      "yarn test:staged"
    ]
  }
}
