-
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.07 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.07 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": "@diomeh/concurrent_callback_queue",
"version": "0.8.32",
"description": "A simple, lightweight, zero dependencies pure JavaScript queue implementation that allows for parallel execution of asynchronous tasks.",
"keywords": [
"queue",
"concurrent",
"callback"
],
"homepage": "https://diomeh.github.io/concurrent_callback_queue/index.html",
"bugs": {
"url": "https://github.com/Diomeh/concurrent_callback_queue/issues",
"email": "davidurbina.dev@gmail.com"
},
"license": "MIT",
"author": {
"name": "David Urbina",
"email": "davidurbina.dev@gmail.com",
"url": "https://github.com/Diomeh"
},
"contributors": [
{
"name": "David Urbina",
"email": "davidurbina.dev@gmail.com",
"url": "https://github.com/Diomeh"
}
],
"files": [
"./src/**/*",
"./tutorials/**/*",
"./dist/**/*"
],
"source": "./src/ConcurrentCallbackQueue.js",
"main": "./dist/ConcurrentCallbackQueue.cjs.js",
"module": "./dist/ConcurrentCallbackQueue.esm.js",
"browser": "./dist/ConcurrentCallbackQueue.iife.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Diomeh/concurrent_callback_queue.git"
},
"scripts": {
"prepare": "husky",
"test": "jest",
"docs": "jsdoc -c jsdoc.config.json",
"lint": "eslint --cache --fix .",
"lint:staged": "lint-staged",
"build": "node esbuild.config.js"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/jest": "^29.5.12",
"better-docs": "^2.7.3",
"esbuild": "0.23.1",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.8.3",
"globals": "^15.8.0",
"husky": "^9.1.3",
"jest": "^29.7.0",
"jsdoc": "~4.0.3",
"lint-staged": "^15.2.7",
"prettier": "3.3.3"
},
"engines": {
"node": ">=14"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}