buffered-async-iterable
Version:
Creates a prefetched async iterable
76 lines (75 loc) • 2.31 kB
JSON
{
"name": "buffered-async-iterable",
"version": "1.0.1",
"description": "Creates a prefetched async iterable",
"homepage": "http://github.com/voxpelli/buffered-async-iterable",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/buffered-async-iterable.git"
},
"keywords": [
"async",
"iterator",
"highwatermark"
],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": ">=18.6.0"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"index.js",
"index.d.ts",
"index.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check -i @voxpelli/eslint-config -i eslint",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 95 --ignore-files 'test/*.spec.js'",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"clean": "run-p clean:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-quantifiers": "^1.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^18.19.39",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@voxpelli/eslint-config": "^20.0.0-beta.3",
"@voxpelli/tsconfig": "^12.0.1",
"c8": "^10.1.2",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chai-quantifiers": "^1.0.18",
"eslint": "^9.5.0",
"husky": "^9.0.11",
"installed-check": "^9.3.0",
"knip": "^5.22.3",
"mocha": "^10.5.0",
"npm-run-all2": "^6.2.0",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"type-coverage": "^2.29.0",
"typescript": "~5.5.2",
"validate-conventional-commit": "^1.0.3"
}
}