{
  "name": "@jaszhix/state",
  "version": "1.0.4",
  "description": "Small state management library that handles dispatching callbacks on state change, or manual triggers",
  "private": false,
  "author": "Jason Hicks",
  "license": "MIT",
  "engines": {
    "yarn": ">=1.13.0"
  },
  "scripts": {
    "start": "rollup -c rollup.config.ts -w",
    "test": "jest --coverage --coverageDirectory=build/coverage --passWithNoTests",
    "test:watch": "jest --coverage --coverageDirectory=build/coverage --passWithNoTests --watch",
    "prebuild": "yarn lint",
    "build": "rollup -c rollup.config.ts",
    "postbuild": "yarn escheck ; yarn test",
    "build:local": "rollup -c rollup.config.ts --environment BUILD:development",
    "escheck": "es-check -v",
    "lint": "eslint '**/*.ts' --ignore-pattern node_modules/",
    "deploy": "yarn build ; npm publish",
    "new:major": "yarn version --no-git-tag-version --major",
    "postnew:major": "yarn deploy",
    "new:minor": "yarn version --no-git-tag-version --minor",
    "postnew:minor": "yarn deploy",
    "new:patch": "yarn version --no-git-tag-version --patch",
    "postnew:patch": "yarn deploy"
  },
  "main": "build/state.js",
  "module": "build/state.js",
  "types": "index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jaszhix/state.git"
  },
  "dependencies": {},
  "peerDependencies": {
    "@jaszhix/utils": "1.0.4"
  },
  "devDependencies": {
    "@jaszhix/utils": "1.0.4",
    "@types/eslint": "6.1.0",
    "@types/jest": "^24.0.16",
    "@types/rollup-plugin-json": "^3.0.2",
    "@typescript-eslint/eslint-plugin": "^1.13.0",
    "@typescript-eslint/parser": "^1.13.0",
    "babel-jest": "^24.8.0",
    "es-check": "^5.0.0",
    "eslint": "6.1.0",
    "jest": "^24.8.0",
    "jest-extended": "^0.11.2",
    "rollup": "^1.17.0",
    "rollup-plugin-filesize": "^6.1.1",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-replace": "^2.2.0",
    "rollup-plugin-typescript2": "^0.22.1",
    "ts-jest": "^24.0.2",
    "typescript": "^3.5.3"
  }
}
