-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 3.06 KB
/
package.json
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
{
"name": "iter-ops",
"version": "3.5.0",
"description": "Basic operations on iterables",
"keywords": [
"typescript",
"synchronous",
"asynchronous",
"sequence",
"iterators",
"iterables",
"collections",
"map",
"filter",
"reduce"
],
"homepage": "https://github.com/vitaly-t/iter-ops",
"bugs": {
"url": "https://github.com/vitaly-t/iter-ops/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vitaly-t/iter-ops.git"
},
"license": "MIT",
"author": {
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
"contributors": [
{
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
{
"name": "Rebecca Stevens",
"email": "[email protected]"
}
],
"sideEffects": false,
"type": "module",
"exports": {
"web": {
"module": "./dist/web/iter-ops.min.mjs",
"import": "./dist/web/iter-ops.min.mjs",
"default": "./dist/web/iter-ops.min.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "cross-env npm run clean && cross-env rollup -c rollup.config.ts --configPlugin rollup-plugin-ts",
"check-format": "cross-env prettier --list-different \"./**/*.{json,yml,md,ts}\"",
"check-spelling": "cross-env cspell \"**\" \".github/**/*\"",
"clean": "cross-env rimraf dist",
"doc": "cross-env typedoc --readme none",
"format": "cross-env prettier --write \"./**/*.{json,yml,md,ts}\"",
"lint": "cross-env eslint .",
"test": "cross-env npm run test:js && cross-env npm run test:types",
"test:js": "cross-env TSX_TSCONFIG_PATH=tsconfig.test.json NODE_OPTIONS=\"--import tsx\" c8 mocha \"test/**/*.spec.ts\"",
"test:types": "cross-env npm run build && cross-env tsd -f \"test/**/*.test-d.ts\"",
"typecheck": "tsc -p tsconfig.build.json --noEmit"
},
"devDependencies": {
"@eslint/compat": "1.1.1",
"@eslint/js": "9.8.0",
"@rollup/plugin-terser": "0.4.4",
"@types/chai": "4.3.17",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint__js": "8.42.3",
"@types/estree": "1.0.5",
"@types/mocha": "10.0.7",
"@types/node": "22.1.0",
"c8": "10.1.2",
"chai": "5.1.1",
"cross-env": "7.0.3",
"cspell": "8.13.2",
"eslint": "9.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"mocha": "10.7.3",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.1",
"rimraf": "6.0.1",
"rollup": "4.20.0",
"rollup-plugin-gzip": "4.0.0",
"rollup-plugin-ts": "3.4.5",
"tsd": "0.31.1",
"tsx": "4.17.0",
"typedoc": "0.26.5",
"typescript": "5.5.4",
"typescript-eslint": "8.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}