UNPKG

furi

Version:

File URI manipulation library

49 lines 1.24 kB
{ "name": "furi", "version": "3.0.0", "description": "File URI manipulation library", "repository": { "type": "git", "url": "https://github.com/demurgos/furi" }, "scripts": { "lint": "eslint \"./src/**/*.mts\"", "format": "dprint fmt", "format:check": "dprint check", "build": "tsc --build src/lib/tsconfig.json", "prepack": "yarn run build", "test:build": "tsc --build src/test/tsconfig.json", "test": "yarn run test:build && mocha \"test/**/*.spec.mjs\"" }, "engines": { "node": ">=14.13.1" }, "keywords": [ "file", "url" ], "author": "Charles Samborski <demurgos@demurgos.net> (https://demurgos.net/)", "license": "MIT", "devDependencies": { "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "@typescript-eslint/eslint-plugin": "^6.19.1", "@typescript-eslint/parser": "^6.19.1", "chai": "^5.0.0", "dprint": "^0.45.0", "eslint": "^8.56.0", "mocha": "^10.2.0", "typescript": "^5.3.3" }, "type": "module", "exports": { ".": "./lib/index.mjs", "./package.json": "./package.json" }, "files": [ "./lib/**/*.(mjs|map|mts)", "./src/lib/" ], "packageManager": "yarn@4.0.2" }