-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 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
{
"name": "iterator-js",
"version": "1.3.5",
"description": "Iterator utility class",
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"bench": "vitest bench",
"test": "vitest run",
"test:chromium": "vitest run --browser.name=chromium --browser.provider=playwright --browser.headless",
"test:webkit": "vitest run --browser.name=webkit --browser.provider=playwright --browser.headless",
"test:firefox": "vitest run --browser.name=firefox --browser.provider=playwright --browser.headless",
"build": "npx vite build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gidra5/iterator-js.git"
},
"keywords": [
"iterator",
"utility"
],
"author": "Roman Khranovskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/gidra5/iterator-js/issues"
},
"homepage": "https://github.com/gidra5/iterator-js#readme",
"devDependencies": {
"@fast-check/vitest": "^0.1.2",
"@metarhia/iterator": "^1.0.0-alpha3",
"@types/node": "^20.14.10",
"@vitest/coverage-istanbul": "^2.0.2",
"@vitest/ui": "^2.0.2",
"fast-check": "^3.20.0",
"typescript": "^5.5.3",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.0.2"
}
}