-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
62
{
"name": "kuyruk",
"version": "0.0.7",
"description": "Multifunctional Asynchronous Concurrent Queue",
"main": "kuyruk.js",
"types": "kuyruk.d.ts",
"engines": {
"node": "16 || 18 || 20 || 22"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/timursevimli/kuyruk.git"
},
"keywords": [
"queue",
"concurrency",
"concurrent",
"asynchronous",
"synchronous",
"callback",
"promise",
"lifo",
"fifo",
"priority",
"roundrobin",
"timeout",
"debounce",
"factor",
"pause",
"resume",
"pipe",
"async",
"job",
"task"
],
"author": "Timur Sevimli <svmlitimur@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timursevimli/kuyruk/issues",
"email": "svmlitimur+github@gmail.com"
},
"homepage": "https://github.com/timursevimli/kuyruk#readme",
"scripts": {
"test": "npm run lint && npm run types && tap --disable-coverage run",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\""
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"tap": "^21.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@tsevimli/collections": "^0.0.3"
}
}