-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "@ricokahler/lazy",
"version": "0.0.0",
"description": "A small, useful set of methods for lazy iteration of iterables",
"keywords": [
"iterable",
"enumerable",
"linq",
"lazy",
"lazy.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ricokahler/lazy.git"
},
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "hello@rico.codes",
"url": "https://github.com/ricokahler"
},
"sideEffects": false,
"exports": {
".": [
{
"import": "./dist/index.exports.import.es.mjs",
"default": "./dist/index.exports.require.cjs.js"
},
"./dist/index.exports.require.cjs.js"
],
"./package.json": "./package.json"
},
"main": "./dist/index.main.cjs.js",
"jsdelivr": "./dist/index.unpkg.umd.js",
"unpkg": "./dist/index.unpkg.umd.js",
"module": "./dist/index.module.es.js",
"types": "./index.d.ts",
"scripts": {
"build": "./scripts/build",
"test": "jest",
"prepare": "npm run build",
"lint": "eslint ./index.js && tsc"
},
"devDependencies": {
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.3.1",
"@sanity/eslint-config-studio": "4.0.0",
"@types/jest": "29.5.14",
"@types/node": "^22.0.0",
"eslint": "8.57.1",
"jest": "29.7.0",
"prettier": "3.4.2",
"regenerator-runtime": "0.14.1",
"rollup": "4.29.1",
"semantic-release": "24.2.0",
"typescript": "5.7.2"
}
}