@drew887121/iteratorfuncs
Version:
A small package to make working with iterators easier
52 lines (51 loc) • 1.37 kB
JSON
{
"name": "@drew887121/iteratorfuncs",
"version": "0.1.0",
"description": "A small package to make working with iterators easier",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"docs": "typedoc",
"test": "npm run build && find ./ -name '*.spec.ts' -exec node --loader tsx --test {} \\;",
"test:coverage": "npm run build && find ./ -name '*.spec.ts' -exec node --experimental-test-coverage --loader tsx --test {} \\;",
"lint": "prettier . --write",
"lint:check": "prettier . --check",
"prepare": "husky install"
},
"author": "drew887121@gmail.com",
"license": "MPL-2.0",
"devDependencies": {
"@types/node": "^20.8.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"tsx": "^3.13.0",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/drew887/iteratorFuncs.git"
},
"keywords": [
"iterators",
"iterator",
"Iterable",
"IterableIterator",
"map",
"reduce",
"filter"
],
"bugs": {
"url": "https://github.com/drew887/iteratorFuncs/issues"
},
"homepage": "https://github.com/drew887/iteratorFuncs#readme"
}