-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.11 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
{
"name": "delayed-foreach",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"description": "A 'delayed' foreach loop that runs at specified intervals",
"keywords": [
"forEach",
"loop",
"array",
"delay",
"rate limit",
"animation",
"async"
],
"license": "MIT",
"repository": "https://github.com/theurgi/delayed-foreach",
"author": "theurgi",
"type": "module",
"files": [
"dist"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsup",
"type-check": "tsc --noEmit",
"lint": "eslint --cache .",
"format": "prettier --write .",
"test": "jest",
"prepack": "pnpm build"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@theurgi/eslint-config": "^1.8.0",
"@types/jest": "^29.5.0",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"tsup": "^6.7.0",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": [
"@theurgi/eslint-config"
]
},
"tsup": {
"clean": true,
"dts": true,
"entryPoints": [
"src/main.ts"
],
"format": [
"esm"
],
"outDir": "dist"
}
}