{
  "name": "dragonbinder",
  "version": "2.2.1",
  "description": "1kb progressive state management library inspired by Vuex.",
  "source": "lib/index.js",
  "main": "dist/dragonbinder.min.js",
  "module": "dist/dragonbinder.mjs",
  "unpkg": "dist/dragonbinder.min.js",
  "browser": "dist/dragonbinder.min.js",
  "exports": {
    "import": "./dist/dragonbinder.mjs",
    "require": "./dist/dragonbinder.js"
  },
  "repository": "git@github.com:Masquerade-Circus/dragonbinder.git",
  "author": "Masquerade Circus <christian@masquerade-circus.net>",
  "license": "Apache-2.0",
  "private": false,
  "keywords": [
    "store",
    "state",
    "state-management",
    "reactive",
    "vuex",
    "redux",
    "flux",
    "manager",
    "progressive"
  ],
  "engines": {
    "node": ">=8.15.0"
  },
  "engineStrict": true,
  "scripts": {
    "build": "node build.js",
    "dev:test": "ava --watch --verbose",
    "dev:test:nyc": "nodemon -w ./tests -w ./lib --exec 'nyc --reporter=lcov --reporter=text ava --verbose'",
    "test": "npm run test:ava && npm run test:esm && npm run test:cjs && npm run test:min",
    "test:ava": "nyc ava",
    "test:esm": "node tests/test.mjs",
    "test:cjs": "node tests/test.cjs",
    "test:min": "node tests/test.min.js",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "docs": "docma -c docma.json",
    "docs:watch": "nodemon -w ./lib -w ./*.md -w ./docma.json --exec 'npm run docs'",
    "docs:serve": "docma serve",
    "commit": "git add . && git-cz",
    "release": "release-it --verbose",
    "release-test": "release-it --dry-run --verbose"
  },
  "devDependencies": {
    "@release-it/conventional-changelog": "^5.0.0",
    "ava": "^4.3.0",
    "coveralls": "^3.1.1",
    "cz-conventional-changelog": "^3.3.0",
    "docma": "^3.2.2",
    "esbuild": "^0.14.48",
    "eslint": "^8.19.0",
    "eslint-plugin-sonarjs": "^0.13.0",
    "esm": "^3.2.25",
    "expect": "^28.1.1",
    "nyc": "^15.1.0",
    "release-it": "^15.1.1",
    "terser": "^5.14.1"
  },
  "overrides": {
    "minimist": "^1.2.6"
  },
  "ava": {
    "files": [
      "tests/**/*_test.js"
    ],
    "ignoredByWatcher": [
      "dist",
      "node_modules",
      "docs"
    ],
    "failWithoutAssertions": false,
    "require": [
      "esm"
    ]
  },
  "nyc": {
    "include": [
      "lib"
    ],
    "exclude": [
      "build.js",
      "tests",
      "dist",
      "node_modules"
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "release-it": {
    "plugins": {
      "@release-it/conventional-changelog": {
        "infile": "CHANGELOG.md",
        "preset": {
          "name": "conventionalcommits",
          "types": [
            {
              "type": "feat",
              "section": "Features"
            },
            {
              "type": "feature",
              "section": "Features"
            },
            {
              "type": "fix",
              "section": "Bug Fixes"
            },
            {
              "type": "perf",
              "section": "Performance Improvements"
            },
            {
              "type": "revert",
              "section": "Reverts"
            },
            {
              "type": "docs",
              "section": "Documentation"
            },
            {
              "type": "style",
              "section": "Styles"
            },
            {
              "type": "chore",
              "section": "Miscellaneous Chores"
            },
            {
              "type": "refactor",
              "section": "Code Refactoring"
            },
            {
              "type": "test",
              "section": "Tests"
            },
            {
              "type": "build",
              "section": "Build System"
            },
            {
              "type": "ci",
              "section": "Continuous Integration"
            }
          ]
        }
      }
    },
    "git": {
      "requireCleanWorkingDir": false
    },
    "github": {
      "release": true
    },
    "npm": {
      "publish": true
    },
    "hooks": {
      "before:init": [
        "npm run build",
        "npm run test",
        "npm run docs"
      ]
    }
  },
  "funding": "https://github.com/sponsors/Masquerade-Circus"
}
