-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@cldmv/holdmytask",
"version": "2.0.0",
"description": "A tiny task queue that waits until your task is ready",
"main": "./index.cjs",
"module": "./index.mjs",
"types": "./types/index.d.mts",
"exports": {
".": {
"types": "./types/index.d.mts",
"import": "./index.mjs",
"require": "./index.cjs"
},
"./main": {
"holdmytask-dev": {
"types": "./types/src/hold-my-task.d.mts",
"import": "./src/hold-my-task.mjs"
},
"types": "./types/dist/hold-my-task.d.mts",
"import": "./dist/hold-my-task.mjs"
}
},
"engines": {
"node": ">=18.12"
},
"scripts": {
"test": "node tests/run-vitest.mjs",
"test:watch": "vitest --config .configs/vitest.config.mjs",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:types": "tsc --noEmit --project .configs/tsconfig.dts.jsonc",
"coverage": "node tests/run-vitest.mjs --coverage-quiet",
"ci:coverage": "npm run coverage",
"lint": "eslint --config .configs/eslint.config.mjs .",
"lint:fix": "eslint --config .configs/eslint.config.mjs . --fix",
"format": "prettier --config .configs/.prettierrc --write .",
"format:check": "prettier --config .configs/.prettierrc --check .",
"build": "node build.mjs",
"build:types": "tsc --project .configs/tsconfig.dts.jsonc",
"build:ci": "npm run build:types && npm run test:types && npm run build",
"precommit": "npm run build:types && npm run test:types && npm run lint && npm run test"
},
"keywords": [
"task",
"queue",
"scheduler",
"priority",
"delay",
"concurrency",
"async",
"promise",
"callback",
"timeout",
"expire",
"bypass",
"task-queue",
"job-queue",
"priority-queue",
"nodejs",
"esm",
"cjs",
"typescript"
],
"author": {
"name": "Shinrai",
"company": "CLDMV",
"email": "git+npm@cldmv.net",
"url": "https://cldmv.net"
},
"contributors": [
{
"name": "CLDMV",
"url": "https://github.com/CLDMV"
}
],
"license": "Apache-2.0",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/shinrai"
},
"type": "module",
"devDependencies": {
"@cldmv/vitest-runner": "^1.2.0",
"@eslint/css": "^1.4.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.1",
"@eslint/markdown": "^8.0.3",
"@html-eslint/eslint-plugin": "^0.64.0",
"@html-eslint/parser": "^0.64.0",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"eslint": "^10.8.0",
"globals": "^17.9.0",
"prettier": "^3.0.0",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CLDMV/holdmytask.git"
},
"bugs": {
"url": "https://github.com/CLDMV/holdmytask/issues"
},
"homepage": "https://github.com/CLDMV/holdmytask#readme",
"publishConfig": {
"access": "public"
},
"files": [
"index.mjs",
"index.cjs",
"README.md",
"LICENSE",
"types/dist/",
"types/index.d.mts",
"types/index.d.mts.map",
"dist/"
],
"sideEffects": false
}