{
  "name": "@dalokey/enumerator",
  "version": "1.0.1",
  "description": "A container for a finite set of elements that provides various enumeration functionality.",
  "main": "index.js",
  "scripts": {
    "build": "npm run clear && tsc",
    "clear": "npm run clean-types && npm run clean-lib",
    "clean-types": "npx rimraf ./index.d.ts",
    "clean-lib": "npx rimraf ./.lib",
    "test": "ts-mocha tests/**/*.test.ts"
  },
  "keywords": [
    "Enum",
    "Enumerator",
    "Enumeration",
    "Element set",
    "Container"
  ],
  "author": "Dalokey",
  "license": "ISC",
  "dependencies": {
    "chai": "^4.3.4",
    "mocha": "^9.1.3",
    "ts-mocha": "^8.0.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.0",
    "@types/mocha": "^9.0.0",
    "typescript": "^4.5.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dalokey/enumerator.git"
  },
  "bugs": {
    "url": "https://github.com/dalokey/enumerator/issues"
  },
  "homepage": "https://github.com/dalokey/enumerator"
}
