{
  "name": "ean13-lib",
  "version": "0.0.6",
  "description": "Provides common EAN 13 barcode related features.",
  "author": "Márcio P. Dantas <marciopd@gmail.com>",
  "main": "dist/index",
  "typings": "dist/index",
  "files": [
    "dist"
  ],
  "keywords": [
    "ean13",
    "validation",
    "generation",
    "check digit"
  ],
  "license": "MIT",
  "scripts": {
    "clean": "rimraf ./dist ./coverage",
    "ts": "tsc",
    "ts:watch": "tsc -w",
    "test": "jest --coverage",
    "build": "npm run clean && npm run ts",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/marciopd/ean13-lib.git"
  },
  "devDependencies": {
    "@types/jest": "30.0.0",
    "@types/node": "22.19.21",
    "jest": "30.4.2",
    "rimraf": "2.6.3",
    "ts-jest": "29.4.11",
    "typescript": "6.0.3"
  },
  "overrides": {
    "js-yaml": "4.2.0"
  },
  "jest": {
    "collectCoverage": true,
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": ".",
    "testRegex": ".spec.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "testEnvironment": "node",
    "setupFiles": [
      "./jest-setup-file.ts"
    ]
  }
}
