All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.cjs.package.json Maven / Gradle / Ivy

The newest version!
{
    "name": "mkdirp",
    "description": "Recursively mkdir, like `mkdir -p`",
    "version": "3.0.1",
    "keywords": [
        "mkdir",
        "directory",
        "make dir",
        "make",
        "dir",
        "recursive",
        "native"
    ],
    "bin": "./dist/cjs/src/bin.js",
    "main": "./dist/cjs/src/index.js",
    "module": "./dist/mjs/index.js",
    "types": "./dist/mjs/index.d.ts",
    "exports": {
        ".": {
            "import": {
                "types": "./dist/mjs/index.d.ts",
                "default": "./dist/mjs/index.js"
            },
            "require": {
                "types": "./dist/cjs/src/index.d.ts",
                "default": "./dist/cjs/src/index.js"
            }
        }
    },
    "files": [
        "dist"
    ],
    "scripts": {
        "preversion": "npm test",
        "postversion": "npm publish",
        "prepublishOnly": "git push origin --follow-tags",
        "preprepare": "rm -rf dist",
        "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
        "postprepare": "bash fixup.sh",
        "pretest": "npm run prepare",
        "presnap": "npm run prepare",
        "test": "c8 tap",
        "snap": "c8 tap",
        "format": "prettier --write . --loglevel warn",
        "benchmark": "node benchmark/index.js",
        "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts"
    },
    "prettier": {
        "semi": false,
        "printWidth": 80,
        "tabWidth": 2,
        "useTabs": false,
        "singleQuote": true,
        "jsxSingleQuote": false,
        "bracketSameLine": true,
        "arrowParens": "avoid",
        "endOfLine": "lf"
    },
    "devDependencies": {
        "@types/brace-expansion": "^1.1.0",
        "@types/node": "^18.11.9",
        "@types/tap": "^15.0.7",
        "c8": "^7.12.0",
        "eslint-config-prettier": "^8.6.0",
        "prettier": "^2.8.2",
        "tap": "^16.3.3",
        "ts-node": "^10.9.1",
        "typedoc": "^0.23.21",
        "typescript": "^4.9.3"
    },
    "tap": {
        "coverage": false,
        "node-arg": [
            "--no-warnings",
            "--loader",
            "ts-node/esm"
        ],
        "ts": false
    },
    "funding": {
        "url": "https://github.com/sponsors/isaacs"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/isaacs/node-mkdirp.git"
    },
    "license": "MIT",
    "engines": {
        "node": ">=10"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy