{
  "name": "symbology",
  "version": "3.0.13",
  "description": "🔖 Generates 1D, 2D, and composite barcodes in png, svg, or eps formats. Supports 50+ symbologies.",
  "scripts": {
    "ye": "node ./test.js",
    "commit": "git-cz",
    "release": "standard-version",
    "lint": "eslint ./src",
    "test:e2e": "rimraf test/e2e/__rendered__/* && jest test/e2e",
    "test:unit": "jest src --collectCoverage true",
    "test": "npm run test:unit && npm run test:e2e",
    "build": "tsc && npm run binary:rebuild",
    "binary:install": "node-pre-gyp install --fallback-to-build",
    "binary:rebuild": "node-pre-gyp rebuild package",
    "install": "node ./scripts/install.js && npm run binary:install",
    "install:rebuild": "rimraf bin && node ./scripts/install.js && npm run binary:rebuild",
    "docs:dev": "vuepress dev docs",
    "docs:build": "vuepress build docs"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "author": "Josh Shor <https://github.com/jshor>",
  "license": "GPL-3.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/jshor/symbology.git"
  },
  "homepage": "https://symbology.dev",
  "keywords": [
    "barcode",
    "code 128",
    "qr",
    "ean",
    "upc",
    "isbn",
    "pdf417",
    "gs1",
    "aztec",
    "data matrix",
    "usps onecode"
  ],
  "binary": {
    "module_name": "symbology",
    "module_path": "./bin/binding/bin/",
    "remote_path": "{version}",
    "package_name": "{module_name}_{platform}_{arch}_{node_abi}.tar.gz",
    "host": "https://github.com/jshor/symbology/releases/download/"
  },
  "engines": {
    "node": ">=14.0.0 <17.0.0"
  },
  "dependencies": {
    "@mapbox/node-pre-gyp": "^1.0.10",
    "nan": "^2.14.2",
    "node-fetch": "2",
    "pngjs": "^6.0.0",
    "replace-in-file": "^6.3.5",
    "rimraf": "^3.0.2",
    "tar": "^6.1.12"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.3.0",
    "@commitlint/config-conventional": "^17.3.0",
    "@rollup/plugin-commonjs": "^23.0.2",
    "@rollup/plugin-node-resolve": "^15.0.1",
    "@rollup/plugin-typescript": "^9.0.2",
    "@types/jest": "^29.2.3",
    "@types/jest-image-snapshot": "^5.1.0",
    "@types/node": "^18.11.9",
    "@types/pngjs": "^6.0.0",
    "@typescript-eslint/eslint-plugin": "^5.44.0",
    "@typescript-eslint/parser": "^5.44.0",
    "@vuepress/plugin-register-components": "^2.0.0-beta.53",
    "codecov": "^3.8.3",
    "commitizen": "^4.2.5",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.28.0",
    "husky": "^8.0.2",
    "jest": "^29.3.1",
    "jest-image-snapshot": "^6.0.0",
    "rollup": "^3.4.0",
    "rollup-plugin-terser": "^7.0.2",
    "standard-version": "^9.5.0",
    "ts-jest": "^29.0.3",
    "typescript": ">=3.0.0",
    "vuepress": "^2.0.0-beta.53"
  },
  "peerDependencies": {
    "@mapbox/node-pre-gyp": "^1.0.2"
  },
  "resolutions": {
    "vuepress-vite": "2.0.0-beta.53"
  },
  "jest": {
    "setupFilesAfterEnv": [
      "./test/setup.ts"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 90,
        "functions": 90,
        "lines": 90,
        "statements": 90
      }
    },
    "transform": {
      "^.+\\.tsx?$": [
        "ts-jest",
        {
          "tsconfig": "tsconfig.json"
        }
      ]
    }
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "zintVersion": "89518c4"
}