-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.8 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
{
"name": "iteretijs",
"version": "0.2.3",
"description": "Set of JavaScript iterator, generator and stream utilities",
"type": "module",
"engines": {
"node": "20"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./async": {
"types": "./dist/async.d.ts",
"import": "./dist/async.js",
"require": "./dist/async.cjs"
},
"./sync": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./stream": {
"types": "./dist/stream.d.ts",
"import": "./dist/stream.js",
"require": "./dist/stream.cjs"
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"files": [
"dist",
"src",
"README.md",
"package.json"
],
"scripts": {
"build": "vite build",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davbrito/iteretijs.git"
},
"keywords": [
"javascript",
"typescript",
"iterators",
"generators",
"async"
],
"author": "David Brito",
"license": "MIT",
"bugs": {
"url": "https://github.com/davbrito/iteretijs/issues"
},
"homepage": "https://github.com/davbrito/iteretijs#readme",
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"eslint": "^8.55.0",
"glob": "^10.3.10",
"happy-dom": "^12.10.3",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.0.4"
}
}