{
    "name": "pip-requirements-js",
    "version": "1.0.2",
    "description": "A robust parser for requirements.txt files",
    "keywords": [
        "pip",
        "python",
        "requirements.txt"
    ],
    "author": "Michael Matloka",
    "license": "MPL-2.0",
    "main": "dist/index.js",
    "homepage": "https://github.com/Twixes/pip-requirements-js#readme",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Twixes/pip-requirements-js.git"
    },
    "packageManager": "pnpm@8.6.11",
    "scripts": {
        "prepare": "husky install",
        "lint": "eslint --fix src/",
        "lint:check": "eslint src/",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "clean": "rimraf dist",
        "compile:ohm": "ohm generateBundles --withTypes src/*",
        "compile:ts": "tsc",
        "compile:ts:check": "tsc --noEmit",
        "compile": "pnpm compile:ohm && pnpm compile:ts",
        "compile:check": "pnpm compile:ohm && pnpm compile:ts:check",
        "copy:ohm": "cp src/**.ohm-bundle.* dist/",
        "test": "pnpm jest",
        "build": "pnpm clean && pnpm compile && pnpm copy:ohm",
        "prepublishOnly": "pnpm build && pnpm test"
    },
    "dependencies": {
        "ohm-js": "^17.1.0"
    },
    "devDependencies": {
        "@ohm-js/cli": "^2.0.0",
        "@types/jest": "^29.5.2",
        "@typescript-eslint/eslint-plugin": "^5.60.1",
        "@typescript-eslint/parser": "^5.60.1",
        "eslint": "^8.44.0",
        "eslint-config-standard-with-typescript": "^36.0.0",
        "eslint-plugin-import": "^2.27.5",
        "eslint-plugin-n": "^16.0.1",
        "eslint-plugin-promise": "^6.1.1",
        "husky": "^8.0.3",
        "jest": "^29.5.0",
        "lint-staged": "^13.2.3",
        "prettier": "^2.8.8",
        "rimraf": "^5.0.1",
        "ts-jest": "^29.1.1",
        "typescript": "^5.1.6"
    },
    "lint-staged": {
        "*.{js,json,md,yml,yaml}": "prettier --write",
        "src/*.ts": [
            "prettier --write",
            "eslint --fix"
        ]
    }
}
