UNPKG

null-writable

Version:
78 lines (77 loc) 2.5 kB
{ "name": "null-writable", "version": "2.0.1", "description": "Null writable stream", "type": "module", "exports": { ".": { "default": "./lib/null-writable.js", "typings": "./lib/null-writable.d.ts" } }, "main": "lib/null-writable.js", "typings": "lib/null-writable.d.ts", "repository": { "type": "git", "url": "https://github.com/dex4er/js-null-writable" }, "keywords": [ "null", "stream", "writable", "writev" ], "author": "Piotr Roszatycki", "license": "MIT", "bugs": { "url": "https://github.com/dex4er/js-null-writable/issues" }, "homepage": "http://github.com/dex4er/js-null-writable", "engines": { "node": ">=16.0.0" }, "devDependencies": { "@eslint/js": "^9.10.0", "@tsconfig/node16": "^16.1.3", "@types/chai": "^4.3.19", "@types/eslint__js": "^8.42.3", "@types/mocha": "^10.0.8", "@types/node": "^20.16.5", "@types/semver": "^7.5.8", "c8": "^10.1.2", "chai": "^5.1.1", "eslint": "^9.10.0", "eslint-config-prettier": "^9.1.0", "markdownlint-cli": "^0.41.0", "mocha": "^10.7.3", "mocha-steps": "^1.3.0", "prettier": "^3.3.3", "semver": "^7.6.3", "shx": "^0.3.4", "ts-node": "^10.9.2", "tslib": "^2.7.0", "typescript": "^5.6.2", "typescript-eslint": "^8.6.0" }, "scripts": { "compile": "tsc --pretty --project .", "clean": "npm run clean:compile && npm run clean:coverage", "clean:compile": "shx rm -rf lib", "clean:coverage": "shx rm -rf coverage .nyc_output", "lint": "npm run lint:tsc:src && npm run lint:tsc:test && npm run lint:tsc:examples && npm run lint:eslint && npm run lint:prettier && npm run lint:markdownlint", "lint:tsc:examples": "tsc --noEmit --pretty --project examples", "lint:tsc:src": "tsc --noEmit --pretty --project .", "lint:tsc:test": "tsc --noEmit --pretty --project test", "lint:eslint": "eslint .", "lint:prettier": "prettier --ignore-path .gitignore --list-different '**/*.{js,json,md,ts,yml}'", "lint:markdownlint": "markdownlint \"*.md\"", "prepack": "npm run compile", "prepublishOnly": "npm run test", "pretest": "npm run lint", "test": "npm run test:spec", "test:spec": "mocha", "test:coverage": "npm run test:coverage:spec && npm run test:coverage:report", "test:coverage:spec": "c8 --no-clean --reporter=lcov npm run test:spec", "test:coverage:report": "c8 report --reporter=text-summary --color" } }