{
    "name": "@nozzlegear/railway",
    "version": "3.2.0",
    "type": "module",
    "main": "./dist/index.cjs",
    "module": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        "require": {
            "types": "./dist/index.d.cts",
            "default": "./dist/index.cjs"
        },
        "import": {
            "types": "./dist/index.d.ts",
            "default": "./dist/index.js"
        }
    },
    "description": "Functional helpers, heavily inspired by F#, to help facilitate \"railway oriented\" programming.",
    "repository": "https://github.com/nozzlegear/railway",
    "author": "Joshua Harms <joshua@nozzlegear.com>",
    "license": "MIT",
    "private": false,
    "devDependencies": {
        "@types/jest": "^29.5.7",
        "barrelsby": "^2.8.1",
        "jest": "^29.7.0",
        "ts-jest": "^29.1.1",
        "tsup": "^7.2.0",
        "typescript": "5.2.2"
    },
    "scripts": {
        "barrel": "barrelsby -e \".*\\.spec\\.(t|j)sx?$\" -d ./src --delete",
        "build": "yarn barrel && tsup src/index.ts --format cjs,esm --dts --clean",
        "test": "yarn jest",
        "prepublishOnly": "yarn build && yarn test"
    },
    "files": [
        "dist",
        "README.md"
    ],
    "jest": {
        "testEnvironment": "node",
        "transform": {
            "^.+\\.tsx?$": "ts-jest"
        },
        "testRegex": "src/.*\\.spec\\.(t|j)sx?$",
        "moduleFileExtensions": [
            "ts",
            "tsx",
            "js",
            "jsx",
            "json"
        ],
        "testPathIgnorePatterns": [
            "/node_modules/",
            "/\\./"
        ],
        "watchPathIgnorePatterns": [
            "<rootDir>/node_modules/"
        ]
    }
}
