{
    "name": "modify-filepath",
    "version": "1.1.1",
    "keywords": [
        "modify",
        "filepath"
    ],
    "description": "A convenient way for changing parts of filepath.",
    "author": "Yuri Yaryshev",
    "main": "lib/cjs/index.js",
    "module": "lib/esm/index.js",
    "exports": {
        ".": {
            "import": "./lib/esm/index.js",
            "require": "./lib/cjs/index.js"
        }
    },
    "typings": "lib/types/index.d.ts",
    "homepage": "https://github.com/yuyaryshev/modify-filepath",
    "repository": {
        "type": "git",
        "url": "https://github.com/yuyaryshev/modify-filepath"
    },
    "license": "Unlicense",
    "publishConfig": {
        "registry": "http://registry.npmjs.org"
    },
    "scripts": {
        "start": "node lib/cjs/start.js",
        "precompile": "yb precompile && eslint src --fix --quiet",
        "precompile_full": "npm run precompile && prettier src --write",
        "clean:cjs": "yb clean_cjs",
        "build:cjs": "npm run clean:cjs && babel src --config-file ./babel.cjs.config.cjs --out-dir lib/cjs --extensions \".ts,.tsx,.js,.jsx\" --source-maps ",
        "watch:cjs": "npm run clean:cjs && babel src --config-file ./babel.cjs.config.cjs --out-dir lib/cjs --extensions \".ts,.tsx,.js,.jsx\" --source-maps -w",
        "watch:test:cjs": "npm run build:cjs && jest --config=jest.config-cjs.cjs --passWithNoTests -w",
        "clean:esm": "yb clean_esm",
        "build:esm": "npm run clean:esm && babel src --config-file ./babel.esm.config.cjs --out-dir lib/esm --extensions \".ts,.tsx,.js,.jsx\" --source-maps ",
        "watch:esm": "npm run clean:esm && babel src --config-file ./babel.esm.config.cjs --out-dir lib/esm --extensions \".ts,.tsx,.js,.jsx\" --source-maps -w",
        "clean:types": "yb clean_types",
        "build:types": "npm run clean:types && tsc -p tsconfig-declarations.json",
        "watch:types": "npm run clean:types && tsc -p tsconfig-declarations.json -w",
        "clear:docs": "yb clean_docs",
        "build:docs": "api-extractor run --local && api-documenter markdown --input-folder temp --output-folder docs",
        "clean": "yb clean_all && npm run clear:docs",
        "clean:ts": "yb clean_ts",
        "build:ts": "npm run clean:ts && tsc",
        "build": "npm run precompile_full && npm run clean && npm run build:esm && npm run build:cjs && npm run build:types && npm run lint && npm run test && npm run build:docs",
        "test:cjs": "npm run build:cjs && jest --config=jest.config-cjs.cjs --passWithNoTests",
        "test:ts": "jest --config=jest.config-ts.cjs --passWithNoTests",
        "test": "jest --config=jest.config-ts.cjs --passWithNoTests",
        "tsc": "npm run build:ts",
        "lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
        "republish": "npm run build && npx version-select && yb genprojmeta && npm publish",
        "deps": "echo Finding loops in .js requires... & del deps.png & madge dist -c -i deps.png && deps.png",
        "deps_all": "echo Generating full .js requires tree... & del deps.png & madge dist -i deps.png && deps.png",
        "deps_orphans": "echo Finding orphans .js requires... & del deps.png & madge dist --orphans -i deps.png && deps.png",
        "clean:frontend": "echo no front-end",
        "build:frontend": "echo no front-end",
        "watch:frontend": "echo no front-end"
    },
    "devDependencies": {
        "@babel/cli": "7.14.5",
        "@babel/core": "7.14.6",
        "@babel/node": "^7.14.7",
        "@babel/parser": "7.14.7",
        "@babel/plugin-proposal-class-properties": "^7.14.5",
        "@babel/plugin-proposal-decorators": "^7.14.5",
        "@babel/plugin-proposal-object-rest-spread": "^7.14.7",
        "@babel/plugin-proposal-optional-chaining": "7.14.5",
        "@babel/plugin-transform-modules-commonjs": "^7.14.5",
        "@babel/plugin-transform-typescript": "^7.14.6",
        "@microsoft/api-documenter": "^7.13.28",
        "@microsoft/api-extractor": "^7.17.1",
        "sinon": "^11.1.1",
        "@types/sinon": "^10.0.2",
        "@types/jest": "^26.0.23",
        "@typescript-eslint/eslint-plugin": "^4.28.2",
        "@typescript-eslint/parser": "^4.28.2",
        "babel-loader": "^8.2.2",
        "babel-plugin-inline-replace-variables": "^1.3.1",
        "babel-plugin-module-resolver": "^4.1.0",
        "babel-watch": "^7.4.1",
        "eslint": "^7.30.0",
        "eslint-config-prettier": "^8.3.0",
        "eslint-plugin-import": "^2.23.4",
        "eslint-plugin-jsdoc": "^35.4.1",
        "eslint-plugin-sonarjs": "^0.9.0",
        "eslint-plugin-tsdoc": "^0.2.14",
        "javascript-stringify": "^2.1.0",
        "jest": "^27.0.6",
        "ts-jest": "^27.0.3",
        "jest-ts-webcompat-resolver": "^1.0.0",
        "json5": "^2.2.0",
        "prettier": "^2.3.2",
        "pretty-quick": "^3.1.1",
        "tslib": "^2.3.0",
        "typescript": "^4.3.5",
        "cross-env": "^7.0.3",
        "modify-filepath": "^1.1.0",
        "yyabuilder": "^1.1.4",
        "@types/chai": "^4.2.19",
        "chai": "^4.3.4",
        "mocha": "^9.0.2"
    },
    "bugs": {
        "url": "https://github.com/yuyaryshev/modify-filepath/issues"
    }
}