37 lines
784 B
JSON
37 lines
784 B
JSON
{
|
|
"name": "@harperfast/extended-iterable",
|
|
"author": "Harper",
|
|
"version": "1.0.3",
|
|
"description": "Extended iterable class, providing lazy array-like methods with automatic async and return/throw forwarding",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/harperdb/extended-iterable.git"
|
|
},
|
|
"keywords": [
|
|
"iterable",
|
|
"lazy"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c"
|
|
},
|
|
"type": "module",
|
|
"module": "./index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"types": "./index.d.ts",
|
|
"files": [
|
|
"./index.js",
|
|
"./index.d.ts",
|
|
"./dist/index.cjs",
|
|
"./dist/index.cjs.map"
|
|
],
|
|
"devDependencies": {
|
|
"rollup": "^4.53.3"
|
|
}
|
|
}
|