{
  "name": "voting-lib",
  "version": "0.8.1",
  "description": "A library to manage voting systems",
  "keywords": [
    "voting",
    "election",
    "judgment",
    "transparency"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "start": "tsc && node dist/index.js",
    "lint": "eslint src/**/*.ts",
    "test": "mocha -r ts-node/register 'test/**/*.test.ts'",
    "coverage": "nyc npm run test",
    "prepublish": "npm run build",
    "examples:election": "npm run build && node examples/election.mjs",
    "examples:judgment": "npm run build && node examples/judgment.mjs",
    "examples:option": "npm run build && node examples/option.mjs"
  },
  "engines": {
    "node": ">=14.17.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dreangine/voting-lib.git"
  },
  "author": "Omar V. Buede <omar@dreangine.xyz>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dreangine/voting-lib/issues"
  },
  "homepage": "https://github.com/dreangine/voting-lib#readme",
  "np": {
    "yarn": false,
    "contents": "dist"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "1.0.2",
    "@types/chai": "4.3.0",
    "@types/chai-as-promised": "7.1.4",
    "@types/chai-spies": "1.0.3",
    "@types/mocha": "9.0.0",
    "@types/node": "18.11.9",
    "@typescript-eslint/eslint-plugin": "5.7.0",
    "@typescript-eslint/parser": "5.7.0",
    "chai": "4.3.4",
    "chai-as-promised": "7.1.1",
    "chai-spies": "1.0.0",
    "eslint": "8.4.1",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-prettier": "4.0.0",
    "mocha": "11.7.4",
    "nyc": "15.1.0",
    "prettier": "2.5.1",
    "ts-node": "10.4.0",
    "typescript": "4.5.4"
  }
}
