UNPKG

@purinton/path

Version:

An ESM/Jest friendly path utility.

62 lines 1.5 kB
{ "name": "@purinton/path", "type": "module", "version": "1.0.14", "description": "An ESM/Jest friendly path utility.", "main": "index.cjs", "module": "index.mjs", "types": "index.d.ts", "files": [ "index.mjs", "index.cjs", "index.d.ts", "README.md", "LICENSE" ], "exports": { ".": { "import": "./index.mjs", "require": "./index.cjs", "types": "./index.d.ts" } }, "scripts": { "test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent" }, "repository": { "type": "git", "url": "git+https://github.com/purinton/path.git" }, "keywords": [ "path", "paths", "esm", "jest", "utilities", "utils", "nodejs", "module", "resolver", "filepath", "import", "testing", "compatibility" ], "author": "Russell Purinton <russell@purinton.us>", "license": "MIT", "bugs": { "url": "https://github.com/purinton/path/issues" }, "homepage": "https://github.com/purinton/path#readme", "devDependencies": { "jest": "^30.0.4" }, "jest": { "testEnvironment": "node", "testMatch": [ "**/?(*.)+(spec|test).[jt]s?(x)", "**/?(*.)+(spec|test).mjs", "**/?(*.)+(spec|test).cjs" ] } }