-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 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
{
"name": "for-promise",
"version": "2.0.5",
"description": "A lightweight utility to run async loops with full control using Promises — like for, forEach, and while, but smarter.",
"scripts": {
"test": "npm run test:mjs && npm run test:cjs && npm run test:js",
"test:js": "npx babel-node test/index.js",
"test:mjs": "node test/index.mjs",
"test:cjs": "node test/index.cjs",
"fix:prettier": "prettier --write ./src/* && prettier --write ./test/*",
"auto-build": "npm run build",
"build": "tsc -p tsconfig.json && rollup -c",
"build-clean": "npm run clean && npm run build",
"build-dist": "npm run build",
"build-browserify": "npx browserify build/browserify.js -p esmify > dist/TinyAiApi.web.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"ethereum": "jasmindreasond.x",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tiny-Essentials/ForPromise-JS.git"
},
"keywords": [
"promise",
"async",
"loop",
"forEach",
"sequential",
"asynchronous",
"await",
"iterator",
"javascript",
"for-promise",
"control-flow",
"while-loop",
"for-loop",
"nested-loop",
"async-loop"
],
"author": "Yasmin Seidel (Jasmin Dreasond)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tiny-Essentials/ForPromise-JS/issues"
},
"homepage": "https://github.com/Tiny-Essentials/ForPromise-JS#readme",
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.9",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"babel-preset-es2015": "^6.24.1",
"prettier": "3.5.3",
"rollup": "^4.40.0",
"rollup-preserve-directives": "^1.1.3",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}