asyncreiterable
Version:
An AsyncReiterable is an append-only collection that allows multiple asynchronous iterations.
79 lines (78 loc) • 1.96 kB
JSON
{
"name": "asyncreiterable",
"version": "2.0.0",
"description": "An AsyncReiterable is an append-only collection that allows multiple asynchronous iterations.",
"main": "index.js",
"typings": "index",
"repository": "git@github.com:rubensworks/asyncreiterable.js.git",
"keywords": [
"asynciterator",
"asyncreiterable",
"async",
"iteration",
"iterator",
"append-only"
],
"author": "Ruben Taelman <ruben.taelman@ugent.be>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rubensworks/asyncreiterable.js/issues"
},
"homepage": "https://github.com/rubensworks/asyncreiterable.js#readme",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"index.d.ts",
"index.js"
],
"dependencies": {
"asynciterator": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"arrayify-stream": "^1.0.0",
"coveralls": "^3.0.0",
"jest": "^26.0.0",
"manual-git-changelog": "^1.0.1",
"pre-commit": "^1.2.2",
"ts-jest": "^26.0.0",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.3.1"
},
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint index.ts lib/**/*.ts test/**/*.ts --exclude '**/*.d.ts'",
"build": "tsc",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
}
}