{
  "name": "lexure",
  "version": "0.17.0",
  "description": "Parser and utilities for non-technical user input.",
  "keywords": [
    "lexer",
    "parser",
    "parsing",
    "command",
    "commands",
    "api",
    "args",
    "arguments"
  ],
  "main": "dist/lib/index.js",
  "typings": "dist/types/index.d.ts",
  "exports": {
    "import": "./esm/index.mjs",
    "require": "./dist/lib/index.js"
  },
  "files": [
    "dist",
    "esm"
  ],
  "author": "1Computer <onecomputer00@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/1Computer1/lexure.git"
  },
  "license": "MIT",
  "engines": {
    "node": ">=12.0.0"
  },
  "scripts": {
    "lint": "eslint ./src ./test --ext .ts",
    "bench": "npm run build && node benchmarks",
    "build": "rimraf dist && tsc -p tsconfig.build.json",
    "docs": "rimraf docs/reference && typedoc",
    "test": "jest --coverage",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint && npm run test"
  },
  "jest": {
    "transform": {
      ".ts": "ts-jest"
    },
    "testEnvironment": "node",
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "collectCoverageFrom": [
      "src/*.{ts,js}"
    ],
    "globals": {
      "ts-jest": {
        "tsConfig": "tsconfig.json"
      }
    }
  },
  "devDependencies": {
    "@types/benchmark": "^1.0.33",
    "@types/jest": "^26.0.0",
    "@types/node": "^14.0.13",
    "@typescript-eslint/eslint-plugin": "^3.2.0",
    "@typescript-eslint/parser": "^3.2.0",
    "benchmark": "^2.1.4",
    "eslint": "^7.2.0",
    "eslint-plugin-jest": "^23.13.2",
    "fast-check": "^1.25.1",
    "jest": "^26.0.1",
    "jest-config": "^26.0.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.1.0",
    "typedoc": "^0.18.0",
    "typedoc-plugin-markdown": "github:1Computer1/typedoc-plugin-markdown#custom",
    "typescript": "^3.9.5"
  }
}
