-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 4.24 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 4.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@codibre/fluent-iterable",
"description": "Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).",
"version": "1.39.2",
"private": false,
"author": {
"name": "Thiago O Santos <tos.oliveira@gmail.com>"
},
"contributors": [
"Thiago O Santos <tos.oliveira@gmail.com>",
"Gentilhomme <gentilhomme.thomas@gmail.fr>"
],
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"doc": "rm -rf docs && npx typedoc && git add . && git commit -m 'chore: generating docs [skip ci]'",
"format": "prettier --write src/**/*.ts tst/**/*.ts",
"lint": "npm run lint:format && npm run lint:style",
"lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
"build": "nest build",
"test": "jest test/unit",
"test:watch": "jest test/unit --watch",
"test:coverage": "jest test/unit --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest test/e2e",
"test:benchmark": "node test/benchmark/general-benchmark.spec.js",
"test:benchmark:branch": "node test/benchmark/branch-benchmark.spec.js",
"test:memory": "ts-node test/memory/run.ts",
"test:memory-native": "ts-node test/memory/run.ts",
"prepublishOnly": "npm run build && npm run test:coverage",
"preversion": "npm run build && npm run test:coverage",
"clear": "npm run clear:build && npm run clear:modules",
"clear:build": "del-cli ./dist",
"clear:modules": "del-cli ./node_modules",
"prebuild": "npm run clear:build && del-cli tsconfig.tsbuildinfo",
"preaction:verify:update-modules": "npm run action:verify:update-modules:check",
"action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean",
"action:verify:update-modules:clean": "del-cli .check",
"lint:format": "prettier --check '{src,test}/**/*.ts'",
"lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
"lint:style": "eslint '**/*.ts'",
"lint:style:fix": "eslint '**/*.ts' --fix",
"get:version": "echo $npm_package_version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codibre/fluent-iterable.git"
},
"homepage": "https://codibre.github.io/fluent-iterable",
"bugs": {
"url": "https://github.com/codibre/fluent-iterable/issues"
},
"keywords": [
"iterable",
"asyncIterable",
"linq",
"map",
"filter",
"fluent",
"stream",
"streams",
"readable",
"merge",
"combine",
"iterator",
"asyncIterator",
"iteration",
"functional",
"collection",
"array",
"map",
"set",
"filter",
"reduce",
"flatten",
"concat",
"every",
"some",
"flat",
"flatMap"
],
"license": "MIT",
"peerDependencies": {
"for-emit-of": "^1.3.3"
},
"peerDependenciesMeta": {
"for-emit-of": {
"optional": true
}
},
"dependencies": {
"augmentative-iterable": "^1.6.0",
"typed-emitter": "^1.4.0"
},
"devDependencies": {
"@codibre/confs": "^1.1.2",
"@nestjs/cli": "^10.4.5",
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"benchmark": "^2.1.4",
"del-cli": "^5.1.0",
"delay": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^3.0.0",
"expect": "^29.7.0",
"for-emit-of": "^1.4.0",
"husky": "^9.1.6",
"iter-ops": "^3.5.0",
"iter-tools-es": "^7.5.3",
"iterare": "^1.2.1",
"jest": "^29.7.0",
"jest-callslike": "^0.2.1",
"jest-extended": "^4.0.2",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"random-int": "^2.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"stream-mock": "^2.0.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.6.2"
}
}